Kommentare bearbeiten - Fehlerkorrektur

This commit is contained in:
2026-07-18 19:27:36 +02:00
parent 031f2afd25
commit e3903b4f3e
2 changed files with 9 additions and 4 deletions
+3 -3
View File
@@ -34,12 +34,12 @@ if (!isset($_SESSION["user_email"])) {
if ($articleId !== false && $articleId !== null) {
header(
"Location: ../../index.php?pfad=showArticle&id="
"Location: index.php?pfad=showArticle&id="
. urlencode((string) $articleId)
. "#comments"
);
} else {
header("Location: ../../index.php");
header("Location: index.php");
}
exit();
}
@@ -58,7 +58,7 @@ if (
$_SESSION["comment_message_type"] = "error";
header("Location: ../../index.php");
header("Location: index.php");
exit();
}