[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0ALPHA1-1126-g0d6cc8c

Marc Delisle lem9 at users.sourceforge.net
Sun Nov 28 13:43:40 CET 2010


The branch, master has been updated
       via  0d6cc8ca55a278ae4f2b671f33ae5029701fe705 (commit)
      from  586279a0af1f7915451470dd6e8a561963be1d52 (commit)


- Log -----------------------------------------------------------------
commit 0d6cc8ca55a278ae4f2b671f33ae5029701fe705
Author: Marc Delisle <marc at 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
-- 
phpMyAdmin




More information about the Git mailing list