summaryrefslogtreecommitdiff
path: root/test/bootstrap.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/bootstrap.php')
-rw-r--r--test/bootstrap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bootstrap.php b/test/bootstrap.php
index d541e7b..18ae16b 100644
--- a/test/bootstrap.php
+++ b/test/bootstrap.php
@@ -24,7 +24,7 @@ class MockPDOStatement extends PDOStatement {
public function execute($params) {
$count = 0;
$m = array();
- if (preg_match_all('/"[^"\\]*(?:\?)[^"\\]*"|\'[^\'\\]*(?:\?)[^\'\\]*\'|(\?)/', $this->statement, $m)) {
+ if (preg_match_all('/"[^"\\\\]*(?:\\?)[^"\\\\]*"|\'[^\'\\\\]*(?:\\?)[^\'\\\\]*\'|(\\?)/', $this->statement, $m)) {
$count = count($m);
for ($i = 0; $i < $count; $i++) {
if ($params[$i] == NULL) throw new Exception('Incorrect parameter count.');