Fix Substring for Filter
This commit is contained in:
parent
6b00e57a81
commit
d22c565878
1 changed files with 2 additions and 2 deletions
|
@ -92,9 +92,9 @@ if (count($curfiles) > 0) {
|
||||||
Template::view('tpl/single.html', $data);
|
Template::view('tpl/single.html', $data);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$data['filter'] = substr($filter,2);
|
$data['filter'] = substr($filter,3);
|
||||||
$data['script'] = $_SERVER['PHP_SELF'];
|
$data['script'] = $_SERVER['PHP_SELF'];
|
||||||
Template::view('tpl/notfound.html', $data);
|
Template::view('tpl/notfound.html', $data);
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in a new issue