typo
[lhc/web/wiklou.git] / includes / SkinCologneBlue.php
index 0933645..212e393 100644 (file)
@@ -7,6 +7,9 @@ class SkinCologneBlue extends Skin {
        {
                return "cologneblue.css";
        }
+       function getSkinName() {
+               return "cologneblue";
+       }
 
        function doBeforeContent()
        {
@@ -32,7 +35,9 @@ class SkinCologneBlue extends Skin {
                $s .= "</td><td align='right'>" ;
 
                $s .= "<font size='-1'><span id='langlinks'>" ;
-               $s .= str_replace ( "<br>" , "" , $this->otherLanguages() ) ;
+               $s .= str_replace ( "<br>" , "" , $this->otherLanguages() );
+               $cat = $this->getCategoryLinks();
+               if( $cat ) $s .= "<br />$cat\n";
                $s .= "<br />" . $this->pageTitleLinks();
                $s .= "</span></font>";
 
@@ -79,8 +84,7 @@ class SkinCologneBlue extends Skin {
        function doGetUserStyles()
        {
                global $wgUser, $wgOut, $wgStyleSheetPath;
-
-               $s = parent::doGetUserStyles();
+               $s = '';
                $qb = $this->qbSetting();
 
                if ( 2 == $qb ) { # Right
@@ -95,6 +99,7 @@ class SkinCologneBlue extends Skin {
                          "#article { margin-left:148px; margin-right: 4px; } \n" .
                          "body>#quickbar { position:fixed; left:4px; top:4px; overflow:auto ;bottom:4px;} \n"; # Hides from IE
                }
+               $s .= parent::doGetUserStyles();
                return $s;
        }
        function sysLinks()