1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-16 03:24:01 +02:00

Save bytes

This commit is contained in:
Jakub Vrana
2010-09-09 13:03:10 +02:00
parent 6457cb6af5
commit 454c80f8ca
2 changed files with 8 additions and 7 deletions

View File

@@ -201,7 +201,7 @@ ORDER BY ORDINAL_POSITION");
$key = $keys[$name];
$i--;
echo "<div>" . h($desc) . "<input type='hidden' name='where[$i][col]' value='" . h($name) . "'>:";
enum_input("checkbox", "where[$i][val][]", $field, (array) $where[$key]["val"]); //! impossible to search for NULL
enum_input("checkbox", " name='where[$i][val][]'", $field, (array) $where[$key]["val"]); //! impossible to search for NULL
echo "</div>\n";
unset($columns[$name]);
}