From 67dcf6e3b82ba44b0bc4629ebc194059b2541568 Mon Sep 17 00:00:00 2001 From: Jure Kajzer Date: Sat, 13 Jun 2009 06:49:54 +0000 Subject: [PATCH] typos --- includes/db/DatabaseOracle.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/db/DatabaseOracle.php b/includes/db/DatabaseOracle.php index 657d29d85b..c2df310938 100644 --- a/includes/db/DatabaseOracle.php +++ b/includes/db/DatabaseOracle.php @@ -1041,11 +1041,11 @@ class DatabaseOracle extends DatabaseBase { } function bitAnd($fieldLeft, $fieldRight) { - return 'BITAND('$fieldLeft.', '.$fieldRight.')'; + return 'BITAND('.$fieldLeft.', '.$fieldRight.')'; } function bitOr($fieldLeft, $fieldRight) { - return 'BITOR('$fieldLeft.', '.$fieldRight.')'; + return 'BITOR('.$fieldLeft.', '.$fieldRight.')'; } public function setTimeout( $timeout ) { -- 2.20.1