Changeset 1ad39ef in github
- Timestamp:
- Oct 20, 2008 2:41:54 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 7f63946
- Parents:
- 59ed6f1
- File:
-
- 1 edited
-
program/lib/MDB2.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/lib/MDB2.php
r8e2a5a7 r1ad39ef 2916 2916 $positions = array(); 2917 2917 $position = 0; 2918 $ignores = $this->string_quoting; 2919 $ignores[] = $this->identifier_quoting; 2920 $ignores[] = $this->sql_comments; 2918 2921 2919 while ($position < strlen($query)) { 2922 2920 $q_position = strpos($query, $question, $position); … … 3009 3007 function _skipDelimitedStrings($query, $position, $p_position) 3010 3008 { 3011 $ignores = $this->string_quoting; 3012 $ignores[] = $this->identifier_quoting; 3013 $ignores[] = $this->sql_comments; 3009 $ignores[] = $this->string_quoting; 3010 $ignores[] = $this->identifier_quoting; 3011 3012 $ignores = array_merge($ignores, $this->sql_comments); 3014 3013 3015 3014 foreach ($ignores as $ignore) {
Note: See TracChangeset
for help on using the changeset viewer.
