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

Fix typos after 22a3efe

This commit is contained in:
Jakub Vrana
2025-03-17 14:26:56 +01:00
parent 916889bb8e
commit 78c431ab20
2 changed files with 3 additions and 3 deletions

View File

@@ -188,7 +188,7 @@ if (support("columns") || $TABLE == "") {
echo "<datalist id='collations'>" . optionlist($collations) . "</datalist>";
echo (preg_match("~sqlite|mssql~", JUSH) ? "" : "<input list='collations' name='Collation' value='" . h($row["Collation"]) . "' placeholder='(" . lang('collation') . ")'>");
}
echo "<input type='submit' value='<?php echo lang('Save'); ?>'>\n";
echo "<input type='submit' value='" . lang('Save') . "'>\n";
}
if (support("columns")) {
@@ -198,7 +198,7 @@ if (support("columns")) {
echo "</table>\n";
echo script("editFields();");
echo "</div>\n<p>\n";
echo lang('Auto Increment') . "<input type='number' name='Auto_increment' class='size' value='" . h($row["Auto_increment"]) . "'>\n";
echo lang('Auto Increment') . ": <input type='number' name='Auto_increment' class='size' value='" . h($row["Auto_increment"]) . "'>\n";
echo checkbox("defaults", 1, ($_POST ? $_POST["defaults"] : get_setting("defaults")), lang('Default values'), "columnShow(this.checked, 5)", "jsonly");
$comments = ($_POST ? $_POST["comments"] : get_setting("comments"));
echo (support("comment")