From 34ffad38a608c5ff13e3a7da3b6bb3be2c963fc2 Mon Sep 17 00:00:00 2001 From: NOrtmann1 Date: Fri, 29 May 2026 13:11:58 +0200 Subject: [PATCH] testing --- php/controller/createArticle-controller.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/php/controller/createArticle-controller.php b/php/controller/createArticle-controller.php index 375d136..57f4281 100644 --- a/php/controller/createArticle-controller.php +++ b/php/controller/createArticle-controller.php @@ -17,7 +17,8 @@ if ($_SERVER["REQUEST_METHOD"] === "POST") { try { $articleManager = ArticleManager::getInstance(); - $articleManager->addArticle($title, $content, $author, $category, $tags); + //$articleManager->addArticle($title, $content, $author, $category, $tags); + $articleManager->addArticle("Test", "Testkontent", "informatik", "max.mustermann", "Apfel, Birne"); } catch (Exception $e){ $_SESSION["message"] = "internal_error"; }