From ffea61f99c52e079e01ae3d04d0b57f9f4529c5c Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Mon, 14 Jun 2004 11:44:38 +0000 Subject: [PATCH] using LIKE "%sysop%" to allow listing of sysops with other rights. --- includes/SpecialListadmins.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialListadmins.php b/includes/SpecialListadmins.php index 39ad800543..6e67fc86c6 100644 --- a/includes/SpecialListadmins.php +++ b/includes/SpecialListadmins.php @@ -19,7 +19,7 @@ class ListAdminsPage extends PageQueryPage { return 'SELECT user_rights as type,'.$userspace.' as namespace,'. 'user_name as title, user_name as value '. "FROM $usertable ". - 'WHERE user_rights = "sysop"'; + 'WHERE user_rights LIKE "%sysop%"'; } } -- 2.20.1