r82394 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r82393‎ | r82394 | r82395 >
Date:11:55, 18 February 2011
Author:ialex
Status:ok
Tags:
Comment:
We have already have a printable flag in the OutputPage object, so use it.
This was causing to have the printable version for every non-empty version of the printable paramter, instead of only for "yes".
Modified paths:
  • /trunk/phase3/includes/OutputPage.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/OutputPage.php
@@ -2411,7 +2411,7 @@
24122412 'only' => $only,
24132413 );
24142414 // Propagate printable and handheld parameters if present
2415 - if ( $wgRequest->getBool( 'printable' ) ) {
 2415+ if ( $this->isPrintable() ) {
24162416 $query['printable'] = 1;
24172417 }
24182418 if ( $wgRequest->getBool( 'handheld' ) ) {

Status & tagging log