1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 07:36:44 +02:00

JSON: Remove unnecessary escape

This commit is contained in:
Jakub Vrana
2025-03-18 11:15:03 +01:00
parent 33b69ed82b
commit 5069e5a400

View File

@@ -249,7 +249,7 @@ function input($field, $value, $function, $autofocus = false) {
$name = h(bracket_escape($field["field"])); $name = h(bracket_escape($field["field"]));
echo "<td class='function'>"; echo "<td class='function'>";
if (is_array($value) && !$function) { if (is_array($value) && !$function) {
$value = json_encode($value, 128); // 128 - JSON_PRETTY_PRINT available since PHP 5.4 $value = json_encode($value, 128 | 64 | 256); // 128 - JSON_PRETTY_PRINT, 64 - JSON_UNESCAPED_SLASHES, 256 - JSON_UNESCAPED_UNICODE available since PHP 5.4
$function = "json"; $function = "json";
} }
$reset = (JUSH == "mssql" && $field["auto_increment"]); $reset = (JUSH == "mssql" && $field["auto_increment"]);