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"; }