Beitrag erstellen #13

Merged
niklas.ortmann merged 164 commits from Beitrag-erstellen into dev 2026-05-29 13:22:11 +02:00
Showing only changes of commit 368a4948ec - Show all commits
+3 -2
View File
@@ -5,14 +5,15 @@ if (!isset($abs_path)) {
}
require_once $abs_path . '/php/model/LocalArticleManager.php';
require_once $abs_path . '/php/model/ArticleManager.php';
/*
try {
$articleManager = ArticleManager::getInstance();
}catch (Exception $e){
die("Fehler bei der Initialisierung des Artikel-Managers: " . $e->getMessage());
}
/*
if ($_SERVER["REQUEST_METHOD"] === "POST") {
if(!isset($_POST["title"]) ||!isset($_POST["content"]) || !isset($_POST["category"])){
$_SESSION["message"] = "missing_parameters";