0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

Redirect to listview after editing

This commit is contained in:
Unknown 2021-07-05 15:39:51 -03:00
parent 6b1be117f0
commit 029d749fb8

View File

@ -184,13 +184,8 @@ if ($_SERVER['REQUEST_METHOD'] == "POST") {
}
}
if ($new == 0) {
header("Location: " . $formconf['listview']);
exit;
} else {
header("Location: edit.php?table=$table");
exit;
}
header("Location: " . $formconf['listview']);
exit;
}
}
}