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@cihar.com Date: Tue Aug 23 08:10:05 2011 +0200
Merge remote-tracking branch 'origin/master'
commit de3ac00227226a9475783132cab2e1ac798c762c Author: Aris Feryanto aris_feryanto@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