From bad5057d7d956e0729e4d05e5298498d55599ce9 Mon Sep 17 00:00:00 2001 From: Bryan Tong Minh Date: Tue, 20 May 2008 14:34:19 +0000 Subject: [PATCH] Forgot one $this => self when making ApiQueryImageInfo::getInfo static. --- includes/api/ApiQueryImageInfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } } -- 2.20.1