Followup r71609 add missing $
authorSam Reed <reedy@users.mediawiki.org>
Wed, 25 Aug 2010 02:24:54 +0000 (02:24 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Wed, 25 Aug 2010 02:24:54 +0000 (02:24 +0000)
includes/db/Database.php

index 092be36..9781a52 100644 (file)
@@ -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 );
        }
 
        /**