From 3a0e03407ce763242f06fff8415488902872c376 Mon Sep 17 00:00:00 2001 From: ddtddt Date: Sun, 21 Mar 2010 07:51:07 +0000 Subject: [Branche2] bug:1523 / Compatibility with PHP 5.3 git-svn-id: http://piwigo.org/svn/branches/2.0@5210 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions.inc.php b/include/functions.inc.php index 6bd311f52..6b1f5fb56 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -457,7 +457,7 @@ function get_languages($target_charset = null) while ($file = readdir($dir)) { $path = PHPWG_ROOT_PATH.'language/'.$file; - if (!is_link($path) and file_exists($path.'/iso.txt')) + if (!is_link($path) and is_dir($path) and file_exists($path.'/iso.txt')) { list($language_name) = @file($path.'/iso.txt'); -- cgit v1.2.3