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

Focus first field with insert (bug #3126501)

This commit is contained in:
Jakub Vrana
2011-01-31 15:57:28 +01:00
parent e26b1864e3
commit ceef6bc6d3
2 changed files with 8 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ if ($_POST["save"]) {
}
?>
<form action="" method="post" enctype="multipart/form-data">
<form action="" method="post" enctype="multipart/form-data" id="form">
<?php
if ($fields) {
echo "<table cellspacing='0' onkeydown='return editingKeydown(event);'>\n";
@@ -103,8 +103,9 @@ if ($fields) {
echo '<input type="submit" name="insert" value="' . ($update ? lang('Save and continue edit') : lang('Save and insert next')) . "\">\n";
}
}
if ($update) {
echo "<input type='submit' name='delete' value='" . lang('Delete') . "' onclick=\"return confirm('" . lang('Are you sure?') . "');\">\n";
}
echo ($update
? "<input type='submit' name='delete' value='" . lang('Delete') . "' onclick=\"return confirm('" . lang('Are you sure?') . "');\">\n"
: "<script type='text/javascript'>document.getElementById('form').elements[0].focus();</script>\n"
);
?>
</form>