From e84ea5fdd14b8b19c139f11c226e234b11196af1 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sat, 23 Jun 2012 00:40:20 +0200 Subject: [PATCH] Add missing __METHOD__ to select in LocalRepo Change-Id: Ice6d05227ab0149daa29a00f9441f5628618330c --- includes/filerepo/LocalRepo.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/filerepo/LocalRepo.php b/includes/filerepo/LocalRepo.php index 2beea43a75..c616e162b7 100644 --- a/includes/filerepo/LocalRepo.php +++ b/includes/filerepo/LocalRepo.php @@ -234,7 +234,8 @@ class LocalRepo extends FileRepo { $res = $dbr->select( 'image', LocalFile::selectFields(), - array( 'img_sha1' => $hash ) + array( 'img_sha1' => $hash ), + __METHOD__ ); $result = array(); -- 2.20.1