diff options
Diffstat (limited to '')
-rw-r--r-- | include/functions.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index 52e0e0fa9..edc9f2062 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -260,7 +260,7 @@ function get_languages() while ($file = readdir($dir)) { - $path = realpath(PHPWG_ROOT_PATH.'language/'.$file); + $path = PHPWG_ROOT_PATH.'language/'.$file; if (is_dir($path) and !is_link($path) and file_exists($path.'/iso.txt')) { list($language_name) = @file($path.'/iso.txt'); |