Index: trunk/phase3/includes/upload/UploadStash.php |
— | — | @@ -308,7 +308,7 @@ |
309 | 309 | * @return String: URL to access thumbnail, or URL with partial path |
310 | 310 | */ |
311 | 311 | public function getThumbUrl( $thumbName = false ) { |
312 | | - return self::getSpecialUrl( $thumbName ); |
| 312 | + return $this->getSpecialUrl( $thumbName ); |
313 | 313 | } |
314 | 314 | |
315 | 315 | /** |
— | — | @@ -332,7 +332,7 @@ |
333 | 333 | */ |
334 | 334 | public function getUrl() { |
335 | 335 | if ( !isset( $this->url ) ) { |
336 | | - $this->url = self::getSpecialUrl( $this->getUrlName() ); |
| 336 | + $this->url = $this->getSpecialUrl( $this->getUrlName() ); |
337 | 337 | } |
338 | 338 | return $this->url; |
339 | 339 | } |
Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -354,7 +354,7 @@ |
355 | 355 | $uniq_prefix = $this->mUniqPrefix; |
356 | 356 | $matches = array(); |
357 | 357 | $elements = array_keys( $this->mTransparentTagHooks ); |
358 | | - $text = self::extractTagsAndParams( $elements, $text, $matches, $uniq_prefix ); |
| 358 | + $text = $this->extractTagsAndParams( $elements, $text, $matches, $uniq_prefix ); |
359 | 359 | |
360 | 360 | foreach ( $matches as $marker => $data ) { |
361 | 361 | list( $element, $content, $params, $tag ) = $data; |
Index: trunk/phase3/includes/SpecialPage.php |
— | — | @@ -573,7 +573,7 @@ |
574 | 574 | $page->including( $including ); |
575 | 575 | |
576 | 576 | // Execute special page |
577 | | - $profName = 'Special:' . $page->getName(); |
| 577 | + $profName = 'Special:' . $page->name(); |
578 | 578 | wfProfileIn( $profName ); |
579 | 579 | $page->execute( $par ); |
580 | 580 | wfProfileOut( $profName ); |