Skip to content
Snippets Groups Projects
Commit ced476e1 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

fixed typo

parent f126de80
No related branches found
No related tags found
2 merge requests!1560Development,!1558Resolve "Quicktips Search Query Not Properly Escaped"
...@@ -271,7 +271,7 @@ class MetaGerSearch extends Controller ...@@ -271,7 +271,7 @@ class MetaGerSearch extends Controller
{ {
$search = $request->input('search', ''); $search = $request->input('search', '');
if(empty($search)){ if(empty($search)){
abort(404) abort(404);
} }
$quicktips = new \App\Models\Quicktips\Quicktips($search); $quicktips = new \App\Models\Quicktips\Quicktips($search);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment