Revert Tim's changes to category links, owing to the wave of people objecting and...
authorRob Church <robchurch@users.mediawiki.org>
Sat, 25 Feb 2006 17:23:23 +0000 (17:23 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Sat, 25 Feb 2006 17:23:23 +0000 (17:23 +0000)
RELEASE-NOTES
includes/OutputPage.php

index 52a6d28..2fd0757 100644 (file)
@@ -655,8 +655,6 @@ fully support the editing toolbar, but was found to be too confusing.
 * (bug 4970) Make category paging limits configurable
 * (bug 4535) Warn user when editing CSS or JS subpage of a skin that doesn't exist
 * Make Live Preview an user preference, still controllable by the global variable
-* Make links to categories in the catlinks box blue whether the target page exists 
-  or not.
 * Rename the stub LanguageAls / LanguageGem_alsation to LanguageGsw to follow
   updated language code assignments
 
index 32e60bc..510b9eb 100644 (file)
@@ -227,7 +227,7 @@ class OutputPage {
                foreach ( $categories as $category => $arbitrary ) {
                        $title = Title::makeTitleSafe( NS_CATEGORY, $category );
                        $text = $wgContLang->convertHtml( $title->getText() );
-                       $this->mCategoryLinks[] = $sk->makeKnownLinkObj( $title, $text );
+                       $this->mCategoryLinks[] = $sk->makeLinkObj( $title, $text );
                }
        }