]> git.joonet.de Git - adminer.git/commitdiff
Add missing space
authorJakub Vrana <jakub@vrana.cz>
Fri, 4 Apr 2025 07:32:54 +0000 (09:32 +0200)
committerJakub Vrana <jakub@vrana.cz>
Fri, 4 Apr 2025 07:32:54 +0000 (09:32 +0200)
adminer/create.inc.php

index f7ae98e3463257944b806a3ac56ea4a97fb6d72f..cf28adf247c3fc9af4e139f4ea967135569557e5 100644 (file)
@@ -189,7 +189,7 @@ if (support("columns") || $TABLE == "") {
        echo ($engines ? html_select("Engine", array("" => "(" . lang('engine') . ")") + $engines, $row["Engine"]) . on_help("event.target.value", 1) . script("qsl('select').onchange = helpClose;") . "\n" : "");
        if ($collations) {
                echo "<datalist id='collations'>" . optionlist($collations) . "</datalist>\n";
-               echo (preg_match("~sqlite|mssql~", JUSH) ? "" : "<input list='collations' name='Collation' value='" . h($row["Collation"]) . "' placeholder='(" . lang('collation') . ")'>");
+               echo (preg_match("~sqlite|mssql~", JUSH) ? "" : "<input list='collations' name='Collation' value='" . h($row["Collation"]) . "' placeholder='(" . lang('collation') . ")'>\n");
        }
        echo "<input type='submit' value='" . lang('Save') . "'>\n";
 }