Clear POST with AJAX redirect

This commit is contained in:
Jakub Vrana 2010-10-18 00:05:39 +02:00
parent a93e069d06
commit de24145d81
2 changed files with 7 additions and 4 deletions

View file

@ -345,9 +345,12 @@ function redirect($location, $message = null) {
restart_session();
$_SESSION["messages"][] = $message;
}
if (isset($location) && $_SERVER["HTTP_X_REQUESTED_WITH"] != "XMLHttpRequest") {
header("Location: " . ($location != "" ? $location : "."));
exit;
if (isset($location)) {
if ($_SERVER["HTTP_X_REQUESTED_WITH"] != "XMLHttpRequest") {
header("Location: " . ($location != "" ? $location : "."));
exit;
}
$_POST = array();
}
}

View file

@ -333,7 +333,7 @@ if (!$columns) {
}
}
$id = h("val[$unique_idf][" . bracket_escape($key) . "]");
$value = ($error ? $_POST["val"][$unique_idf][bracket_escape($key)] : null);
$value = $_POST["val"][$unique_idf][bracket_escape($key)];
$h_value = h(isset($value) ? $value : $row[$key]);
$long = strpos($val, "<i>...</i>");
$editable = is_utf8($val) && !$long && $rows[$n][$key] == $row[$key] && !$functions[$key];