[Minibug possible fix] undefined variables
-
L.s,
I’m receiving the following notices when searching on something silly as ‘@’:
Notice: Undefined index: hits in /root/wp-content/plugins/relevanssi/lib/search.php on line 720 Notice: Undefined index: query in /root/wp-content/plugins/relevanssi/lib/search.php on line 721
The simple way to solve it would be to replace those two lines with:
$hits = isset( $return['hits'] ) ? $return['hits'] : 0; $q = isset( $return['query'] ) ? $return['query'] : '';
There may however be an underlying issue, so I won’t proclaim that this would be the best solution.
Hope this helps.
Smile,
Juliette
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Minibug possible fix] undefined variables’ is closed to new replies.