Skip to content

Commit

Permalink
Fix previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
kohler committed Sep 22, 2023
1 parent f313c14 commit 1fdc8e8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions batch/backupdb.php
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,8 @@ private function process_line($s, $line) {
++$p;
}
if ($p === $l) {
$ch = "";
}
if ($ch === "(") {
break;
} else if ($ch === "(") {
if (!preg_match('/\G\((?:[^\\\\\')]|\'(?:[^\\\\\']|\\\\.)*+\')*+\)/s', $s, $m, 0, $p)) {
break;
}
Expand Down

0 comments on commit 1fdc8e8

Please sign in to comment.