diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-12 12:45:14 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-12 12:45:14 +0000 |
| commit | d7aac1b622025273d2d86f48786b57d5b3fa365e (patch) | |
| tree | 89e385f4da3e001073d2624bbdac368fc527755a | |
| parent | d1eece59447039a8c3cc10a66c2e56f69c34209d (diff) | |
- http://pear.php.net/bugs/bug.php?id=14124
git-svn-id: https://svn.roundcube.net/trunk@1515 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/lib/MDB2.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/lib/MDB2.php b/roundcubemail/program/lib/MDB2.php index 326152f95..7e4732266 100644 --- a/roundcubemail/program/lib/MDB2.php +++ b/roundcubemail/program/lib/MDB2.php @@ -3008,9 +3008,9 @@ class MDB2_Driver_Common extends PEAR */
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'])) {
|
