tony2001 Tue Feb 7 14:11:01 2006 UTC Modified files: /php-src/ext/oci8/tests bind_empty.phpt Log: don't use deprecated call-time by reference http://cvs.php.net/viewcvs.cgi/php-src/ext/oci8/tests/bind_empty.phpt?r1=1.3&r2=1.4&diff_format=u Index: php-src/ext/oci8/tests/bind_empty.phpt diff -u php-src/ext/oci8/tests/bind_empty.phpt:1.3 php-src/ext/oci8/tests/bind_empty.phpt:1.4 --- php-src/ext/oci8/tests/bind_empty.phpt:1.3 Tue Dec 6 19:26:56 2005 +++ php-src/ext/oci8/tests/bind_empty.phpt Tue Feb 7 14:11:01 2006 @@ -18,13 +18,13 @@ $name = null; $stmt = oci_parse($c, "UPDATE bind_test SET name=:name"); -oci_bind_by_name($stmt, ":name", &$name); +oci_bind_by_name($stmt, ":name", $name); $res = oci_execute($stmt); $name = ""; $stmt = oci_parse($c, "UPDATE bind_test SET name=:name"); -oci_bind_by_name($stmt, ":name", &$name); +oci_bind_by_name($stmt, ":name", $name); $res = oci_execute($stmt);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php