From 4b6ce10981b2aa5500df2959318eb3d1948e288f Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sat, 23 Mar 2013 12:18:40 +0100 Subject: [PATCH] Pass function name to insert() in replace() in Database class Change-Id: I891370aa5d623ac9971c719da7996a93db641a2c --- 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 65a74abfac..5ad196db7d 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -2488,7 +2488,7 @@ abstract class DatabaseBase implements DatabaseType { } # Now insert the row - $this->insert( $table, $row ); + $this->insert( $table, $row, $fname ); } } -- 2.20.1