From d22c565878fe0c1d744556090c932061ec80ecaf Mon Sep 17 00:00:00 2001 From: Stefan Brand Date: Mon, 10 Jan 2022 15:51:02 +0100 Subject: [PATCH] Fix Substring for Filter --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 1654a3d..c9c6128 100644 --- a/index.php +++ b/index.php @@ -92,9 +92,9 @@ if (count($curfiles) > 0) { Template::view('tpl/single.html', $data); } } else { - $data['filter'] = substr($filter,2); + $data['filter'] = substr($filter,3); $data['script'] = $_SERVER['PHP_SELF']; Template::view('tpl/notfound.html', $data); } -?> +?> \ No newline at end of file