From: Ilia Alshanetsky Date: Thu, 16 Jan 2003 02:53:44 +0000 (+0000) Subject: Fixed bug #20079 (made ora_logoff return TRUE on success). X-Git-Tag: PHP_5_0_dev_before_13561_fix~197 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e53357e9bab7ac8a22218f283213f8a4bec7fbf;p=php Fixed bug #20079 (made ora_logoff return TRUE on success). --- diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 8e35627c6f..0dc2814b36 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -601,6 +601,8 @@ PHP_FUNCTION(ora_logoff) ZEND_FETCH_RESOURCE2(conn, oraConnection *, arg, -1, "Oracle-Connection", le_conn, le_pconn); zend_list_delete(Z_LVAL_PP(arg)); + + RETURN_TRUE; } /* }}} */