kalle Sat, 25 Jul 2009 23:39:21 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=286331
Log: MFB: Fixed bug #48189 (ibase_execute error in return param) Bug: http://bugs.php.net/48189 (Assigned) ibase_execute error in return param Changed paths: U php/php-src/trunk/ext/interbase/ibase_query.c Modified: php/php-src/trunk/ext/interbase/ibase_query.c =================================================================== --- php/php-src/trunk/ext/interbase/ibase_query.c 2009-07-25 23:37:47 UTC (rev 286330) +++ php/php-src/trunk/ext/interbase/ibase_query.c 2009-07-25 23:39:21 UTC (rev 286331) @@ -1029,8 +1029,7 @@ if (affected_rows) { RETVAL_LONG(affected_rows); } else { - /* this return value evaluates to bool(true) and to int(0) */ - RETVAL_STRINGL("0 ",2,1); + RETVAL_TRUE; } break; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php