Explorar o código

Fixed bug in quoteInto with $count parameter and question sign in $value

Ivan A. Ponomarev %!s(int64=11) %!d(string=hai) anos
pai
achega
f8b0e58a07
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      library/Zend/Db/Adapter/Abstract.php

+ 1 - 1
library/Zend/Db/Adapter/Abstract.php

@@ -930,7 +930,7 @@ abstract class Zend_Db_Adapter_Abstract
         if ($count === null) {
             return str_replace('?', $this->quote($value, $type), $text);
         } else {
-            return implode($this->quote($value, $type), explode('?', $text, $count));
+            return implode($this->quote($value, $type), explode('?', $text, $count + 1));
         }
     }