This commit is contained in:
NOrtmann1
2026-05-27 19:28:35 +02:00
parent e5eaaf857e
commit 581c012a72
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ if ($_SERVER["REQUEST_METHOD"] === "POST") {
$author = "max.mustermann"; // TODO: später aus Session den angemeldeten Nutzer beziehen.
$tags = $_POST["tags"];
//$articleManager->addArticle($title, $content, $category, $author, $tags);
//$articleManager->addArticle($title, $content, $author, $category, $tags);
$articles[] = [
//"id" => count($articles)+1,
"title" => $title,
+1 -1
View File
@@ -9,7 +9,7 @@ require_once 'Article.php';
*/
class LocalArticleManager implements ArticleManagerDAO {
private $file = 'data/articles.json';
private $file = '../../data/articles.json';
private static $instance = null;
/**