From: Wez Furlong Date: Fri, 11 Feb 2005 01:22:44 +0000 (+0000) Subject: update in anticipation of a release later tonight X-Git-Tag: RELEASE_0_2_2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f06eb1c5c4a16b20c3e30bad0933dde8cb4200a;p=php update in anticipation of a release later tonight --- diff --git a/ext/pdo/package.xml b/ext/pdo/package.xml index f26240c6f2..c0e3d3480e 100755 --- a/ext/pdo/package.xml +++ b/ext/pdo/package.xml @@ -47,8 +47,8 @@ PHP beta - 0.2.1 - 2005-02-10 + 0.2.2 + 2005-02-11 Note that PDO on its own is useless. @@ -67,6 +67,7 @@ You can find additional PDO drivers at: http://snaps.php.net/win32/PECL_5_0/ - Added PDO::quote($string). Closes PECL Bug #3393 +- Fixed PDO::query() for drivers using bound parameter emulation. diff --git a/ext/pdo/pdo.c b/ext/pdo/pdo.c index 331f16c59a..8d2361c95f 100755 --- a/ext/pdo/pdo.c +++ b/ext/pdo/pdo.c @@ -74,7 +74,7 @@ zend_module_entry pdo_module_entry = { PHP_RINIT(pdo), PHP_RSHUTDOWN(pdo), PHP_MINFO(pdo), - "0.2.1", + "0.2.2", STANDARD_MODULE_PROPERTIES }; /* }}} */