From: Bryan Tong Minh Date: Tue, 20 May 2008 14:34:19 +0000 (+0000) Subject: Forgot one $this => self when making ApiQueryImageInfo::getInfo static. X-Git-Tag: 1.31.0-rc.0~47515 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=bad5057d7d956e0729e4d05e5298498d55599ce9;p=lhc%2Fweb%2Fwiklou.git Forgot one $this => self when making ApiQueryImageInfo::getInfo static. --- diff --git a/includes/api/ApiQueryImageInfo.php b/includes/api/ApiQueryImageInfo.php index c14ea17289..bb8aed8a09 100644 --- a/includes/api/ApiQueryImageInfo.php +++ b/includes/api/ApiQueryImageInfo.php @@ -90,7 +90,7 @@ class ApiQueryImageInfo extends ApiQueryBase { $this->setContinueEnumParameter('start', $oldie->getTimestamp()); break; } - $data[] = $this->getInfo( $oldie, $prop, $result ); + $data[] = self::getInfo( $oldie, $prop, $result ); } }