git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1443
7c3ca157-0c34-0410-bff1-
cbf682f78f5c
if ($_POST && !$error && !isset($_GET["select"])) {
$location = $_POST["referer"];
if ($_POST["insert"]) { // continue edit or insert
- $location = ($update ? ME . "&edit=" . urlencode($TABLE) . unique_idf($_POST["fields"] + $_GET["where"], indexes($TABLE)) : $_SERVER["REQUEST_URI"]); //! doesn't work with functions
+ $location = ($update ? null : $_SERVER["REQUEST_URI"]);
} elseif (!ereg('^.+&select=.+$', $location)) {
$location = ME . "select=" . urlencode($TABLE);
$i = 0; // append &set converted to &where
}
/** Send Location header and exit
-* @param string
+* @param string null to only set a message
* @param string
* @return null
*/
restart_session();
$_SESSION["messages"][] = $message;
}
- header("Location: " . ($location != "" ? $location : "."));
- exit;
+ if (isset($location)) {
+ header("Location: " . ($location != "" ? $location : "."));
+ exit;
+ }
}
/** Execute query and redirect if successful