Index: trunk/phase3/maintenance/refreshLinks.inc |
— | — | @@ -95,7 +95,6 @@ |
96 | 96 | $wgOut->addWikiText( $text ); |
97 | 97 | |
98 | 98 | # Look up the links in the DB and add them to the link cache |
99 | | - $wgOut->transformBuffer(); |
100 | 99 | $wgOut->clearHTML(); |
101 | 100 | |
102 | 101 | $linksUpdate = new LinksUpdate( $id, $wgTitle->getPrefixedDBkey() ); |
Index: trunk/phase3/includes/Article.php |
— | — | @@ -854,9 +854,6 @@ |
855 | 855 | if ($wgUseTrackbacks) |
856 | 856 | $this->addTrackbacks(); |
857 | 857 | |
858 | | - # Put link titles into the link cache |
859 | | - $wgOut->transformBuffer(); |
860 | | - |
861 | 858 | # Add link titles as META keywords |
862 | 859 | $wgOut->addMetaTags() ; |
863 | 860 | |
Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -515,8 +515,6 @@ |
516 | 516 | # Buffer output; final headers may depend on later processing |
517 | 517 | ob_start(); |
518 | 518 | |
519 | | - $this->transformBuffer(); |
520 | | - |
521 | 519 | # Disable temporary placeholders, so that the skin produces HTML |
522 | 520 | $sk->postParseLinkColour( false ); |
523 | 521 | |
— | — | @@ -620,7 +618,6 @@ |
621 | 619 | $this->setArticleRelated( false ); |
622 | 620 | $this->mBodytext = ''; |
623 | 621 | |
624 | | - $sk = $wgUser->getSkin(); |
625 | 622 | $this->addWikiText( wfMsg( 'versionrequiredtext', $version ) ); |
626 | 623 | $this->returnToMain(); |
627 | 624 | } |
— | — | @@ -937,13 +934,6 @@ |
938 | 935 | } |
939 | 936 | |
940 | 937 | /** |
941 | | - * Run any necessary pre-output transformations on the buffer text |
942 | | - */ |
943 | | - function transformBuffer( $options = 0 ) { |
944 | | - } |
945 | | - |
946 | | - |
947 | | - /** |
948 | 938 | * Turn off regular page output and return an error reponse |
949 | 939 | * for when rate limiting has triggered. |
950 | 940 | * @todo i18n |