Skip to content

Commit

Permalink
- Changed 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 4611c53 commit 2e42014
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vqmod/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ vQmod
ABOUT:
======
* @author Qphoria <qphoria@gmail.com> & Jay Gilford <jay@jaygilford.com>
* @copyright (c) 2010-2017
* @copyright (c) 2010-2019
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @site: http://vqmod.com

Expand Down
4 changes: 2 additions & 2 deletions vqmod/vqmod.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @description Main Object used
*/
abstract class VQMod {
public static $_vqversion = '2.6.2'; // Current version number
public static $_vqversion = '2.6.4'; // Current version number

private static $_modFileList = array(); // Array of xml files
private static $_mods = array(); // Array of modifications to apply
Expand Down 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 2e42014

Please sign in to comment.