some comments at top
authorAntoine Musso <hashar@users.mediawiki.org>
Fri, 18 Jun 2004 13:13:09 +0000 (13:13 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Fri, 18 Jun 2004 13:13:09 +0000 (13:13 +0000)
includes/SpecialAsksql.php
includes/SpecialListadmins.php
includes/SpecialListusers.php

index 6c9c487..63fefb1 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+#
+# If enabled through $wgAllowSysopQueries = true, this class
+# let users with sysop right the possibility to make sql queries
+# against the cur table.
+# Heavy queries could slow down the database specially for the
+# biggest wikis.
 
 function wfSpecialAsksql()
 {
index 6e67fc8..8518c43 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+#
+# This class is used to get a list of users flagged with "sysop"
+# right.
 
 require_once("QueryPage.php");
 
index 08229f8..e74f2a2 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+#
+# This class is used to get a list of user. The ones with specials
+# rights (sysop, bureaucrat, developer) will have them displayed
+# next to their names.
 
 require_once("QueryPage.php");