From 253cc5890dec068d2ca3fb0ea2c36c1d945e8fa5 Mon Sep 17 00:00:00 2001
From: svncommit <devs@roundcube.net>
Date: Fri, 03 Oct 2008 02:25:53 -0400
Subject: [PATCH] Fix typo.
---
program/lib/MDB2.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/program/lib/MDB2.php b/program/lib/MDB2.php
index 326152f..7e47322 100644
--- a/program/lib/MDB2.php
+++ b/program/lib/MDB2.php
@@ -3008,9 +3008,9 @@
*/
function _skipDelimitedStrings($query, $position, $p_position)
{
- $ignores = $this->sql_comments;
- $ignores[] = $this->string_quoting;
+ $ignores = $this->string_quoting;
$ignores[] = $this->identifier_quoting;
+ $ignores[] = $this->sql_comments;
foreach ($ignores as $ignore) {
if (!empty($ignore['start'])) {
--
Gitblit v1.9.1