From 4ea2cfe8112f0c69cc7b251b5bd806946f0953c2 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 18 Aug 2010 10:09:03 +0000 Subject: [PATCH] Followup r71241 Another $bitField to $field --- includes/db/DatabaseOracle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/DatabaseOracle.php b/includes/db/DatabaseOracle.php index 4cdea739b4..eae997c9ef 100644 --- a/includes/db/DatabaseOracle.php +++ b/includes/db/DatabaseOracle.php @@ -1130,7 +1130,7 @@ class DatabaseOracle extends DatabaseBase { function bitNot( $field ) { // expecting bit-fields smaller than 4bytes - return 'BITNOT(' . $bitField . ')'; + return 'BITNOT(' . $field . ')'; } function bitAnd( $fieldLeft, $fieldRight ) { -- 2.20.1