1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 23:57:29 +02:00

Save bytes

This commit is contained in:
Jakub Vrana
2011-08-08 18:23:32 +02:00
parent 1a30f25311
commit b7e1cb09c1
5 changed files with 13 additions and 17 deletions

View File

@@ -17,9 +17,9 @@ if ($_POST && !$error) {
page_header($_GET["ns"] != "" ? lang('Alter schema') : lang('Create schema'), $error);
$row = array("name" => $_GET["ns"]);
if ($_POST) {
$row = $_POST;
$row = $_POST;
if (!$row) {
$row = array("name" => $_GET["ns"]);
}
?>