kalle                                    Sat, 25 Jul 2009 23:37:47 +0000

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

Log:
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/branches/PHP_5_3/ext/interbase/ibase_query.c

Modified: php/php-src/branches/PHP_5_3/ext/interbase/ibase_query.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/interbase/ibase_query.c    2009-07-25 
22:20:18 UTC (rev 286329)
+++ php/php-src/branches/PHP_5_3/ext/interbase/ibase_query.c    2009-07-25 
23:37:47 UTC (rev 286330)
@@ -1031,8 +1031,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

Reply via email to