mirror of
https://github.com/vrana/adminer.git
synced 2025-08-13 18:14:07 +02:00
Remove empty if
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@770 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -101,9 +101,8 @@ if ($_POST && !$error) {
|
||||
}
|
||||
$command .= ($_POST["clone"] ? "\nSELECT " . implode(", ", $set) . " FROM " . idf_escape($_GET["select"]) : " SET" . implode(",", $set));
|
||||
}
|
||||
if (!$_POST["delete"] && !$set) {
|
||||
// nothing
|
||||
} elseif ($_POST["all"]) {
|
||||
if ($_POST["delete"] || $set) {
|
||||
if ($_POST["all"]) {
|
||||
$result = queries($command . ($where ? "\nWHERE " . implode(" AND ", $where) : ""));
|
||||
$affected = $dbh->affected_rows;
|
||||
} else {
|
||||
@@ -117,6 +116,7 @@ if ($_POST && !$error) {
|
||||
$affected += $dbh->affected_rows;
|
||||
}
|
||||
}
|
||||
}
|
||||
query_redirect(queries(), remove_from_uri("page"), lang('%d item(s) have been affected.', $affected), $result, false, !$result);
|
||||
//! display edit page in case of an error
|
||||
} elseif (is_string($file = get_file("csv_file"))) {
|
||||
|
Reference in New Issue
Block a user