1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 07:27:39 +02:00

Fix incorrect variable name

This commit is contained in:
Toby Zerner
2015-07-20 18:10:11 +09:30
parent 3820b8c65f
commit c287d40072

View File

@@ -17,7 +17,7 @@ abstract class RegexGambit implements Gambit
if ($matches = $this->match($bit)) {
list($negate) = array_splice($matches, 1, 1);
$this->conditions($searcher, $matches, !! $negate);
$this->conditions($search, $matches, !! $negate);
}
return !! $matches;