The branch, master has been updated via 0d6cc8ca55a278ae4f2b671f33ae5029701fe705 (commit) from 586279a0af1f7915451470dd6e8a561963be1d52 (commit)
- Log ----------------------------------------------------------------- commit 0d6cc8ca55a278ae4f2b671f33ae5029701fe705 Author: Marc Delisle marc@infomarc.info Date: Sun Nov 28 07:40:29 2010 -0500
bug #3119884, path not found (in case the kit is English-only)
-----------------------------------------------------------------------
Summary of changes: libraries/select_lang.lib.php | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index f1a3725..3ed35e4 100644 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -343,10 +343,8 @@ function PMA_langList()
/* Open the directory */ $handle = @opendir($GLOBALS['lang_path']); + /* This can happen if the kit is English-only */ if ($handle === FALSE) { - trigger_error('phpMyAdmin: path not found: ' - . $GLOBALS['lang_path'] . ', check your language directory.', - E_USER_WARNING); return $result; }
@@ -363,7 +361,7 @@ function PMA_langList() }
/** - * @global string path to the translations directory + * @global string path to the translations directory; may be absent if the kit is English-only */ $GLOBALS['lang_path'] = './locale/';
hooks/post-receive