From: Reedy Date: Tue, 8 May 2012 18:08:43 +0000 (+0100) Subject: Make getContinueStr protected as it's used in subclass by TMH X-Git-Tag: 1.31.0-rc.0~23691^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=2173e1fbee0837477ff916ffd23bcb0f5ce35ac9;p=lhc%2Fweb%2Fwiklou.git Make getContinueStr protected as it's used in subclass by TMH Change-Id: I3bd265805122d3ae12b986d1396ca634ca9f8097 --- diff --git a/includes/api/ApiQueryImageInfo.php b/includes/api/ApiQueryImageInfo.php index 03a24821ba..135979acf0 100644 --- a/includes/api/ApiQueryImageInfo.php +++ b/includes/api/ApiQueryImageInfo.php @@ -430,7 +430,7 @@ class ApiQueryImageInfo extends ApiQueryBase { * @param $img File * @return string */ - private function getContinueStr( $img ) { + protected function getContinueStr( $img ) { return $img->getOriginalTitle()->getText() . '|' . $img->getTimestamp(); }