r19093 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r19092‎ | r19093 | r19094 >
Date:22:49, 10 January 2007
Author:werdna
Status:old
Tags:
Comment:
outputWikitext->outputWikiText in Article.php
Modified paths:
  • /branches/werdna/restrictions-separation/includes/Article.php (modified) (history)

Diff [purge]

Index: branches/werdna/restrictions-separation/includes/Article.php
@@ -792,7 +792,7 @@
793793 $wgOut->addParserOutputNoText( $parseout );
794794 } else if ( $pcache ) {
795795 # Display content and save to parser cache
796 - $this->outputWikitext( $text );
 796+ $this->outputWikiText( $text );
797797 } else {
798798 # Display content, don't attempt to save to parser cache
799799 # Don't show section-edit links on old revisions... this way lies madness.
@@ -800,7 +800,7 @@
801801 $oldEditSectionSetting = $wgOut->parserOptions()->setEditSection( false );
802802 }
803803 # Display content and don't save to parser cache
804 - $this->outputWikitext( $text, false );
 804+ $this->outputWikiText( $text, false );
805805
806806 if( !$this->isCurrent() ) {
807807 $wgOut->parserOptions()->setEditSection( $oldEditSectionSetting );