Fehler #161
problem with uploaded file' s name in Greek
Status:
Neu
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
eXtplorer Version:
2.1.4
Joomla! Version:
Joomla! 3.1
Description
Hello!
We are using eXtplorer but are facing a problem: when uploading files named in greek, the file' s name is not shown correctly, it' s like it doesn' t show the correct encoding. What could be the problem? In the configuration file, I see that default encoding id UTF-8, but waht else could be wrong? In the server, I can the file' s name just fine.
Thanks in advance.
Files
History
Updated by Nina Zach almost 9 years ago
For anyone with the same problem, we were able to solve the problem by altering two lines of code in list.php:
around line 240: in the
if ($GLOBALS['use_mb']) clause,
replace
$items['items'][$i]['name'] = utf8_encode($item);
with
$items['items'][$i]['name'] = $item;
(twice)
Hope it helps!