bugfix_updateArticle_missingID & updateArticle Leerzeichen im content #28

Merged
niklas.ortmann merged 11 commits from bugfix_updateArticle_missingID into dev 2026-06-10 16:08:09 +02:00
Showing only changes of commit f54cf58dc2 - Show all commits
+1 -1
View File
@@ -21,7 +21,7 @@ if ($_SERVER["REQUEST_METHOD"] === "POST") {
if (!isset($_POST["title"]) ||!isset($_POST["content"]) || !isset($_POST["category"])){
$_SESSION["message"] = "missing_parameters";
header("location: ../../index.php?pfad=updateArticle");
header("location: ../../index.php?pfad=updateArticle&id=$id");
exit();
}else{
$title = $_POST["title"];