From: umherirrender Date: Fri, 22 Jun 2012 22:40:20 +0000 (+0200) Subject: Add missing __METHOD__ to select in LocalRepo X-Git-Tag: 1.31.0-rc.0~23247^2 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=e84ea5fdd14b8b19c139f11c226e234b11196af1;p=lhc%2Fweb%2Fwiklou.git Add missing __METHOD__ to select in LocalRepo Change-Id: Ice6d05227ab0149daa29a00f9441f5628618330c --- 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();