Skip to content

Commit

Permalink
- Change continue 2; to break 2; to appease php 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
qphoria committed May 9, 2019
1 parent d91b8c8 commit 3036c6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vqmod/vqmod.php
Expand Up @@ -681,7 +681,7 @@ public function applyMod($mods, &$data) {
if($mod['error'] == 'log' || $mod['error'] == 'abort' ) {
VQMod::$log->write('VQModObject::applyMod - INVALID REGEX ERROR - ' . $mod['search']->getContent(), $this);
}
continue 2;
break 2;
} elseif($pos == 0) {
$pos = false;
}
Expand Down

0 comments on commit 3036c6d

Please sign in to comment.