mariuz                                   Sat, 10 Dec 2011 22:04:23 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=320854

Log:
bug fixed #48877 - bindValue and bindParam do not work for PDO Firebird

Bug: https://bugs.php.net/48877 (Assigned) "bindValue" and "bindParam" do not 
work for PDO Firebird
      
Changed paths:
    U   php/php-src/branches/PHP_5_4/ext/pdo_firebird/firebird_driver.c

Modified: php/php-src/branches/PHP_5_4/ext/pdo_firebird/firebird_driver.c
===================================================================
--- php/php-src/branches/PHP_5_4/ext/pdo_firebird/firebird_driver.c     
2011-12-10 16:31:37 UTC (rev 320853)
+++ php/php-src/branches/PHP_5_4/ext/pdo_firebird/firebird_driver.c     
2011-12-10 22:04:23 UTC (rev 320854)
@@ -433,6 +433,7 @@
                                        case ':':
                                                in_param = 1;
                                                ppname = pname;
+                                               *ppname++ = sql[l];
                                        case '?':
                                                *c++ = '?';
                                                ++pindex;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to