georg Wed Jun 15 10:04:24 2005 EDT
Modified files: (Branch: PHP_5_0)
/php-src/ext/mysqli mysqli_api.c
Log:
fixed parameter parse string for mysqli_stmt_attr_set
http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli_api.c?r1=1.87.2.20&r2=1.87.2.21&ty=u
Index: php-src/ext/mysqli/mysqli_api.c
diff -u php-src/ext/mysqli/mysqli_api.c:1.87.2.20
php-src/ext/mysqli/mysqli_api.c:1.87.2.21
--- php-src/ext/mysqli/mysqli_api.c:1.87.2.20 Sat May 21 04:54:56 2005
+++ php-src/ext/mysqli/mysqli_api.c Wed Jun 15 10:04:23 2005
@@ -15,7 +15,7 @@
| Author: Georg Richter <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
- $Id: mysqli_api.c,v 1.87.2.20 2005/05/21 08:54:56 georg Exp $
+ $Id: mysqli_api.c,v 1.87.2.21 2005/06/15 14:04:23 georg Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -1779,7 +1779,7 @@
ulong attr;
int rc;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
"Olb", &mysql_stmt, mysqli_stmt_class_entry, &attr, &mode) == FAILURE) {
+ if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
"Oll", &mysql_stmt, mysqli_stmt_class_entry, &attr, &mode) == FAILURE) {
return;
}
MYSQLI_FETCH_RESOURCE(stmt, MY_STMT *, &mysql_stmt, "mysqli_stmt");
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php