Difference between revisions of "Mediawiki Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
(New page: = MediaWiki Notes = == Manipulating Navigation Menus == Adding the following code to the buildSidebar() function in include/Skins.php will cause an empty menu to be used when no use is ...)
(No difference)

Revision as of 11:08, 29 July 2007

MediaWiki Notes

Manipulating Navigation Menus

Adding the following code to the buildSidebar() function in include/Skins.php will cause an empty menu to be used when no use is logged in.

 (Around line 1608 in include/Skins.php)

        function buildSidebar() {
                global $parserMemc, $wgEnableSidebarCache;
                global $wgLang, $wgContLang;


                #----- PLH 20070728 --------------------------------------

                global $wgUser;

                # if (!$wgUser->isLoggedIn()) {
                #         return array();
                # }

                #---------------------------------------------------------