dev auf main #68

Open
niklas.ortmann wants to merge 1044 commits from devNachCSRF into main
2 changed files with 1 additions and 5 deletions
Showing only changes of commit 24dc432f01 - Show all commits
-4
View File
@@ -6,10 +6,6 @@ if (!isset($abs_path)) {
} }
require_once $abs_path . "/php/controller/index-controller.php"; require_once $abs_path . "/php/controller/index-controller.php";
if (isset($_GET["pfad"]) && $_GET["pfad"] === "search-results") {
require_once $abs_path . "/php/controller/search-results-controller.php";
}
?> ?>
<!-- <!--
+1 -1
View File
@@ -67,7 +67,7 @@ interface ArticleManagerDAO
* *
* @param $keyword Wort, nach dem gesucht wird als string * @param $keyword Wort, nach dem gesucht wird als string
*/ */
public function search(string $keyword): array; //public function search(string $keyword): array;
} }