1
Hi, i want to change the order of my searchfunction.
I have changed in searchform.php
(array("AND"=>_SR_ALL, "OR"=>_SR_ANY, "exact"=>_SR_EXACT));
to
(array("EXACT"=>_SR_EXACT, "OR"=>_SR_ANY, "AND"=>_SR_ALL));
Also i changed in search.php
if ( $andor != "OR" && $andor != "exact" && $andor != "AND" ) {
$andor = "AND";
in
if ( $andor != "OR" && $andor != "exact" && $andor != "AND" ) {
$andor = "exact";
But the system keeps using the AND function. How can i change this so that the general setting is 'exact'?