From 72a697eb43811e0f787dd17334269742395437d7 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Tue, 8 May 2001 16:06:54 +0000 Subject: [PATCH] Fix a typo. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@46869 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/oci8.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/oci8.xml b/functions/oci8.xml index d8b5a9ec6b..52e8d59146 100644 --- a/functions/oci8.xml +++ b/functions/oci8.xml @@ -1360,8 +1360,8 @@ while (OCIFetchInto($curs,&$data)) { var_dump($data); } -OCIFreeCursor($stmt); -OCIFreeStatement($curs); +OCIFreeStatement($stmt); +OCIFreeCursor($curs); OCILogoff($conn); ?>