diff --git a/Changelog b/Changelog index bfaa658f6..b7ea9056a 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2019-02-04 DariusIII + * Chg: Remove SphinxSearch rules description as those do not apply anymore (not using raw queries but SphinxQL query builder) * Chg: Update spatie/laravel-permission (2.30.0 => 2.31.0) * Chg: Update sebastian/diff (3.0.1 => 3.0.2) 2019-02-03 DariusIII diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php index b803c1909..2fe00c7df 100644 --- a/app/Http/Controllers/SearchController.php +++ b/app/Http/Controllers/SearchController.php @@ -166,22 +166,6 @@ class SearchController extends BasePageController ); } - $search_description = - 'Sphinx Search Rules:
-The search is case insensitive.
-All words must be separated by spaces. -Do not seperate words using . or _ or -, sphinx will match a space against those automatically.
-Putting | between words makes any of those words optional.
-Putting << between words makes the word on the left have to be before the word on the right.
-Putting - or ! in front of a word makes that word excluded. Do not add a space between the - or ! and the word.
-Quoting all the words using " will look for an exact match.
-Putting ^ at the start will limit searches to releases that start with that word.
-Putting $ at the end will limit searches to releases that end with that word.
-Putting a * after a word will do a partial word search. ie: fish* will match fishing.
-If your search is only words seperated by spaces, all those words will be mandatory, the order of the words is not important.
-You can enclose words using paranthesis. ie: (^game*|^dex*)s03*(x264<<nogrp$)
-You can combine some of these rules, but not all.
'; - $this->smarty->assign( [ 'sizelist' => [ @@ -192,7 +176,6 @@ You can combine some of these rules, but not all.
'; 'sadvanced' => $searchType !== 'basic', 'grouplist' => Group::getGroupsForSelect(), 'catlist' => Category::getForSelect(), - 'search_description' => $search_description, ] ); diff --git a/resources/views/themes/Gentele/search.tpl b/resources/views/themes/Gentele/search.tpl index afacab48c..303b4b678 100755 --- a/resources/views/themes/Gentele/search.tpl +++ b/resources/views/themes/Gentele/search.tpl @@ -24,7 +24,7 @@
-
{$search_description} +

{{Form::open(['url' => 'search', 'method' => 'get'])}}