mirror of
https://github.com/vrana/adminer.git
synced 2025-08-10 00:28:34 +02:00
Simplify initializing post variables
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
<?php
|
||||
$TYPE = $_GET["type"];
|
||||
$row = $_POST;
|
||||
|
||||
if ($_POST && !$error) {
|
||||
$link = substr(ME, 0, -1);
|
||||
if ($_POST["drop"]) {
|
||||
query_redirect("DROP TYPE " . idf_escape($TYPE), $link, lang('Type has been dropped.'));
|
||||
} else {
|
||||
query_redirect("CREATE TYPE " . idf_escape(trim($_POST["name"])) . " $_POST[as]", $link, lang('Type has been created.'));
|
||||
query_redirect("CREATE TYPE " . idf_escape(trim($row["name"])) . " $row[as]", $link, lang('Type has been created.'));
|
||||
}
|
||||
}
|
||||
|
||||
page_header($TYPE != "" ? lang('Alter type') . ": " . h($TYPE) : lang('Create type'), $error);
|
||||
|
||||
$row = $_POST;
|
||||
if (!$row) {
|
||||
$row = array("as" => "AS ");
|
||||
$row["as"] = "AS ";
|
||||
}
|
||||
?>
|
||||
|
||||
|
Reference in New Issue
Block a user