From 52a537c9dfda12ca3d3b7b6ca066f86a51141de9 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 25 Aug 2010 02:24:54 +0000 Subject: [PATCH] Followup r71609 add missing $ --- includes/db/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 092be365a1..9781a525ae 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -1115,7 +1115,7 @@ abstract class DatabaseBase { * @return bool */ function insert( $table, $a, $fname = 'DatabaseBase::insert', $options = array() ) { - return this->insertOnDupeUpdate( $table, $a, $fname, $options ); + return $this->insertOnDupeUpdate( $table, $a, $fname, $options ); } /** -- 2.20.1