[Mediawiki-l] disable editsection for non logged in users only

Christopher Chow chrischow1 at gmail.com
Tue Feb 28 14:44:45 UTC 2006


Hello, After checking this list archive and other mediawiki resources, I
think I have a work around, but the browser seems to not show the [edit]
link after a user logs in until a F5 or page refresh, so it works, but if
the user was on a page that had editable sections, then logs in, she will
not display the edit tags until the page is manually refreshed.

heres what i added, please critique as necessary as this is the first time i
have changed the php around



## added !$wgUser->getId() || to if statement.

line 298 Skin.php
---------------
if( !$wgUser->getId() || !$wgUser->getOption( 'editsection' ) ) {
            $s .= ".editsection { display: none; }\n";
        }
        return $s;
---------------

Thanks!
Chris



More information about the MediaWiki-l mailing list