From 805107cd2202ddee66c4743e43804a3069508f29 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 2 Apr 2001 15:54:37 +0000 Subject: Commiting my work of last Sunday: - removed ban.inc and ban.module and integrated it in account.module under the name "access control" --> the ban code was not really up to standard so this has now been dealt with. This refactoring and reintegration cuts down the code size with 100 lines too. :-) (The ban.module code was really old and it showed.) - added node.module and made the other modules reuse some of this code --> cut down the code size of modules by at least 100 lines and adds stability. - added a status() function to admin.php to display a conform status message where appropriate. See admin.php for usage. - removed $theme->control() and made comments.inc handle this itself wrapped in a $theme->box(). No need to clutter the themes with such complexity --> updated all themes already. :-) - some small visual changes to some administration pages to be more consistent across different modules. --- includes/user.inc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'includes/user.inc') diff --git a/includes/user.inc b/includes/user.inc index 66a015e4f..09b434102 100644 --- a/includes/user.inc +++ b/includes/user.inc @@ -95,4 +95,9 @@ function user_access($account, $section = 0) { else return ($account->access || $account->id == 1); } +function user_ban($mask, $type) { + $result = db_query("SELECT * FROM access WHERE type = '$type' AND '$mask' REGEXP mask"); + return db_fetch_object($result); +} + ?> \ No newline at end of file -- cgit v1.2.3