[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16732-g224cce8

Michal Čihař nijel at users.sourceforge.net
Tue Aug 23 08:10:28 CEST 2011


The branch, master has been updated
       via  224cce8eafc50dedbe681c9cb1709a6c1ccc0af5 (commit)
       via  de3ac00227226a9475783132cab2e1ac798c762c (commit)
      from  af5c63a905569dfe33ad01cea8a5fc9da333e288 (commit)


- Log -----------------------------------------------------------------
commit 224cce8eafc50dedbe681c9cb1709a6c1ccc0af5
Merge: de3ac00 af5c63a
Author: Michal Čihař <michal at cihar.com>
Date:   Tue Aug 23 08:10:05 2011 +0200

    Merge remote-tracking branch 'origin/master'

commit de3ac00227226a9475783132cab2e1ac798c762c
Author: Aris Feryanto <aris_feryanto at yahoo.com>
Date:   Tue Aug 23 08:09:55 2011 +0200

    Fix printing JS arrays

-----------------------------------------------------------------------

Summary of changes:
 libraries/js_escape.lib.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libraries/js_escape.lib.php b/libraries/js_escape.lib.php
index 969b1bc..b91f180 100644
--- a/libraries/js_escape.lib.php
+++ b/libraries/js_escape.lib.php
@@ -96,7 +96,7 @@ function PMA_getJsValue($key, $value, $escape = true)
     } elseif (is_array($value)) {
         $result .= '[';
         foreach ($value as $id => $val) {
-            $result .= PMA_formatJsVal($value) . ",";
+            $result .= PMA_formatJsVal($val) . ",";
         }
         $result .= "];\n";
     } else {


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list