diff options
author | Antoine Musso <hashar@users.mediawiki.org> | 2004-10-24 19:14:48 +0000 |
---|---|---|
committer | Antoine Musso <hashar@users.mediawiki.org> | 2004-10-24 19:14:48 +0000 |
commit | 28ea816fbafe96825d3c35187a12cadafca6905f (patch) | |
tree | c829380f2d749479467c6ace083f39d60b63b44f /index.php | |
parent | 0863dca4e0b949c6c7123f57b5c3f02bf8e197a0 (diff) | |
download | mediawikicore-28ea816fbafe96825d3c35187a12cadafca6905f.tar.gz mediawikicore-28ea816fbafe96825d3c35187a12cadafca6905f.zip |
Implementing user levels management. This is only a very basic interface and several things need to be done! A tracking bug is at http://bugzilla.wikipedia.org/show_bug.cgi?id=767
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/6066
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/index.php b/index.php index e4d71b588d97..1386b26ed34a 100644 --- a/index.php +++ b/index.php @@ -50,6 +50,9 @@ if ( "" == $title && "delete" != $action ) { } wfProfileOut( "main-misc-setup" ); +# Debug statement for user levels +// print_r($wgUser); + # If the user is not logged in, the Namespace:title of the article must be in # the Read array in order for the user to see it. (We have to check here to # catch special pages etc. We check again in Article::view()) |