Index: trunk/phase3/includes/Parser.php |
— | — | @@ -3287,7 +3287,7 @@ |
3288 | 3288 | if ( isset( $this->mDoubleUnderscores['notoc'] ) && !$this->mForceTocPosition ) { |
3289 | 3289 | $this->mShowToc = false; |
3290 | 3290 | } |
3291 | | - if ( isset( $this->mDoubleUnderscores['hiddencat'] ) ) { |
| 3291 | + if ( isset( $this->mDoubleUnderscores['hiddencat'] ) && $this->mTitle->getNamespace() == NS_CATEGORY ) { |
3292 | 3292 | $this->mOutput->setProperty( 'hiddencat', 'y' ); |
3293 | 3293 | |
3294 | 3294 | $containerCategory = Title::makeTitleSafe( NS_CATEGORY, wfMsgForContent( 'hidden-category-category' ) ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -58,6 +58,7 @@ |
59 | 59 | * (bug 13135) Special:Userrights now passes IDs through form submission |
60 | 60 | to allow functionality on not-quite-right usernames |
61 | 61 | * (bug 12575) Prevent duplicate patrol log entries from being created |
| 62 | +* (bug 13174) __HIDDENCAT__ now applies only to category pages |
62 | 63 | |
63 | 64 | |
64 | 65 | === API changes in 1.13 === |