From: Sam Reed Date: Wed, 25 Aug 2010 02:24:54 +0000 (+0000) Subject: Followup r71609 add missing $ X-Git-Tag: 1.31.0-rc.0~35329 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=52a537c9dfda12ca3d3b7b6ca066f86a51141de9;p=lhc%2Fweb%2Fwiklou.git Followup r71609 add missing $ --- 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 ); } /**