Generate more compact output.

This commit is contained in:
Michal Čihař
2010-05-04 09:07:55 +02:00
parent 93a0962864
commit c2260ccb41

View File

@@ -76,7 +76,7 @@ function PMA_printJsValue($key, $value) {
if (is_array($value)) { if (is_array($value)) {
echo '['; echo '[';
foreach ($value as $id => $val) { foreach ($value as $id => $val) {
echo "'" . PMA_escapeJsString($val) . "',\n"; echo "'" . PMA_escapeJsString($val) . "',";
} }
echo "];\n"; echo "];\n";
} else { } else {