Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -453,7 +453,7 @@ |
454 | 454 | # not for special pages or file pages AND only when viewing AND if the page exists |
455 | 455 | # (or is in MW namespace, because that has default content) |
456 | 456 | if( !in_array( $this->getTitle()->getNamespace(), array( NS_SPECIAL, NS_FILE ) ) && |
457 | | - in_array( $action, array( 'view', 'render', 'print', 'historysubmit' ) ) && |
| 457 | + in_array( $action, array( 'view', 'historysubmit' ) ) && |
458 | 458 | ( $this->getTitle()->exists() || $this->getTitle()->getNamespace() == NS_MEDIAWIKI ) ) { |
459 | 459 | $pageLang = $this->getTitle()->getPageLanguage(); |
460 | 460 | $realBodyAttribs = array( 'lang' => $pageLang->getCode(), 'dir' => $pageLang->getDir(), |