Followup r91094: monobook wasn't broken, but I broke it. Rename to content here too...
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 29 Jun 2011 18:44:21 +0000 (18:44 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 29 Jun 2011 18:44:21 +0000 (18:44 +0000)
skins/MonoBook.php

index 31ad190..b4c41fe 100644 (file)
@@ -179,7 +179,7 @@ echo $footerEnd;
                if ( !isset( $sidebar['TOOLBOX'] ) ) $sidebar['TOOLBOX'] = true;
                if ( !isset( $sidebar['LANGUAGES'] ) ) $sidebar['LANGUAGES'] = true;
 
-               foreach ($sidebar as $boxName => $cont) {
+               foreach( $sidebar as $boxName => $content ) {
                        if ( $content === false )
                                continue;
 
@@ -190,7 +190,7 @@ echo $footerEnd;
                        } elseif ( $boxName == 'LANGUAGES' ) {
                                $this->languageBox();
                        } else {
-                               $this->customBox( $boxName, $cont );
+                               $this->customBox( $boxName, $content );
                        }
                }
        }