[PHP-CVS] cvs: php4 /ext/mysql php_mysql.c
by Jani Taskinen other posts by this author
Aug 29 2002 1:17AM messages near this date
[PHP-CVS] cvs: php4(PHP_4_2_0) /ext/mysql php_mysql.c
|
[PHP-CVS] cvs: php4 / NEWS
sniper Wed Aug 28 21:17:25 2002 EDT
Modified files:
/php4/ext/mysql php_mysql.c
Log:
Fix bug: #19159, mysql_field_count was available since 3.22.24
Index: php4/ext/mysql/php_mysql.c
diff -u php4/ext/mysql/php_mysql.c:1.157 php4/ext/mysql/php_mysql.c:1.158
--- php4/ext/mysql/php_mysql.c:1.157 Sat Aug 24 17:41:25 2002
+++ php4/ext/mysql/php_mysql.c Wed Aug 28 21:17:24 2002
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_mysql.c,v 1.157 2002/08/24 21:41:25 yohgaki Exp $ */
+/* $Id: php_mysql.c,v 1.158 2002/08/29 01:17:24 sniper Exp $ */
/* TODO:
*
@@ -98,7 +98,7 @@
#define MYSQL_USE_RESULT 0
#define MYSQL_STORE_RESULT 1
-#if MYSQL_VERSION_ID < 32223
+#if MYSQL_VERSION_ID < 32224
#define PHP_MYSQL_VALID_RESULT(mysql) (mysql_num_fields(mysql)> 0)
#else
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|