From 805b63b342005bb9669a4cc05e635a19677e388e Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Fri, 31 Dec 2010 16:47:57 +0000 Subject: [PATCH] Followup r78786: pass $fname in the raw SQL case too --- includes/QueryPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 480d74e27c..a45311f2b8 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -375,7 +375,7 @@ abstract class QueryPage extends SpecialPage { $sql = $this->getSQL(); $sql .= ' ORDER BY ' . implode( ', ', $order ); $sql = $dbr->limitResult( $sql, $limit, $offset ); - $res = $dbr->query( $sql ); + $res = $dbr->query( $sql, $fname ); } return $dbr->resultObject( $res ); } -- 2.20.1