[Sprint/GiddyGiraffe] (fix): strip hash character from search
Merged
requested to merge eiennohi/engine:sprint/GiddyGiraffe.feat.strip-hash-character-from-search into master
1 unresolved thread
closes #503 (closed)
Merge request reports
Activity
123 123 124 124 $query = null; 125 125 if (isset($_GET['query'])) { 126 $query = strtolower($_GET['query']); 126 $query = str_replace('#', '', strtolower($_GET['query'])); changed this line in version 2 of the diff
added 2 commits
mentioned in commit a8615d03
Please register or sign in to reply