aboutsummaryrefslogtreecommitdiffstats
path: root/includes/Group.php
Commit message (Collapse)AuthorAgeFilesLines
* Removing the obsolete user group management files.Rotem Liss2006-06-241-390/+0
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/15012
* Removed most exit() calls from the MediaWiki core, by replacing them with ↵Tim Starling2006-06-071-3/+3
| | | | | | | either a throw or by classic error checking. OutputPage::fatalError() and similar functions are deprecated, use either OutputPage::showFatalError() to return control or throw new FatalError() to relinquish it. Backwards compatibility of all interfaces has been maintained, thus extensions should continue to work and can be ported at a later date. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/14631
* Switching from phpdoc to doxygen (use less than 32MB of memory).Antoine Musso2006-04-191-5/+5
| | | | | | | | Run maintenance/mwdocgen.php to generate doc in ./docs/html/ . Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/13740
* removing unused globals and some whitespace cleaningLupin2006-03-071-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/13179
* * s~\t+$~~Ævar Arnfjörð Bjarmason2006-01-071-16/+16
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/12476
* * s~ +$~~Ævar Arnfjörð Bjarmason2006-01-071-10/+10
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/12472
* Code cleanup: normalize case for intval(), strval(), floatval() calls.Brion Vibber2005-08-161-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10564
* Renamed group table to groups, and renamed the fields from group_xxx to ↵Tim Starling2005-05-151-29/+48
| | | | | | | gr_xxx. Added static group support to Special:Listusers. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9042
* reworded some commentsTim Starling2005-05-141-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9009
* Add (somewhat redundant) check for static groups to loadFromDatabase(). It's ↵Tim Starling2005-05-021-2/+1
| | | | | | | redundant because static groups will generally have dataLoaded=true, although I don't want to rely on that. Remove unnecessary breakage of command line mode. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/8786
* * (bug 2046) Make the wiki work on PHP5 againBrion Vibber2005-05-021-15/+11
| | | | | | | Kicks static groups loader back to the factory method to avoid the illegal $this assignment Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/8784
* Major changes to user groups:Tim Starling2005-05-011-37/+195
| | | | | | | | | * Added "static groups" feature to remove memcached/DB load time * Added i18n support, allowing names and descriptions to be optionally drawn from wfMsg/wfMsgForContent * Fixed Special:Groups, it is now half-decent. Too many changes to list here. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/8778
* Lazy loading of revision text; needed for separate text storage backend.Brion Vibber2005-03-181-5/+34
| | | | | | | Use Revision for Article::loadLastEdit Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7730
* fix phpdoc commentAntoine Musso2005-01-271-2/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7278
* Check probably needed. Patch by Andrew MillerAntoine Musso2005-01-151-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7071
* Let Database do the quoting of the 'group' table, so that prefixed tables ↵Brion Vibber2004-10-241-6/+6
| | | | | | | will work. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/6071
* An important file for user managementAntoine Musso2004-10-241-0/+187
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/6068