Index: trunk/phase3/includes/Skin.php |
— | — | @@ -511,7 +511,7 @@ |
512 | 512 | function getCategoryLinks() { |
513 | 513 | global $wgUseCategoryBrowser, $wgContLang; |
514 | 514 | |
515 | | - $out = $this->getContext()->output; |
| 515 | + $out = $this->getContext()->getOutput(); |
516 | 516 | |
517 | 517 | if ( count( $out->mCategoryLinks ) == 0 ) { |
518 | 518 | return ''; |
— | — | @@ -601,7 +601,7 @@ |
602 | 602 | } |
603 | 603 | |
604 | 604 | function getCategories() { |
605 | | - $out = $this->getContext()->output; |
| 605 | + $out = $this->getContext()->getOutput(); |
606 | 606 | |
607 | 607 | $catlinks = $this->getCategoryLinks(); |
608 | 608 | |