[Sprint/GiddyGiraffe] (fix): strip hash character from search
closes #503
0/1 discussion resolved
approved this merge request
123 123 124 124 $query = null; 125 125 if (isset($_GET['query'])) { 126 $query = strtolower($_GET['query']); 126 $query = str_replace('#', '', strtolower($_GET['query'])); - Owner
can we move both of these logics (remove hashtag + lower case) to Core along with spec tests?