diff options
Diffstat (limited to 'phpBB/includes/db/oracle.php')
-rw-r--r-- | phpBB/includes/db/oracle.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/oracle.php b/phpBB/includes/db/oracle.php index 7de1de37c3..35a5a6a87c 100644 --- a/phpBB/includes/db/oracle.php +++ b/phpBB/includes/db/oracle.php @@ -409,7 +409,7 @@ class dbal_oracle extends dbal $success = @ociexecute($result, OCI_DEFAULT); $row = array(); - while (@ocifetchinto($query_id, $row, OCI_ASSOC + OCI_RETURN_NULLS)) + while (@ocifetchinto($result, $row, OCI_ASSOC + OCI_RETURN_NULLS)) { // Take the time spent on parsing rows into account } |