From 36bb57555c1be31a19db442db35befba3188633a Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 13 Nov 2003 19:52:54 +0000 Subject: - table(...) -> theme("table", ...) --- modules/user.module | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/user.module') diff --git a/modules/user.module b/modules/user.module index ab9cf1431..7a218635b 100644 --- a/modules/user.module +++ b/modules/user.module @@ -1244,7 +1244,7 @@ function user_admin_access($edit = array()) { $options = array ("1" => t("Allow"), "0" => t("Deny")); $rows[] = array(form_radios(NUll, "status", $edit["status"], $options), form_textfield(NULL, "mask", $edit["mask"], 32, 64), form_submit(t("Add rule"))); - $output .= table($header, $rows); + $output .= theme("table", $header, $rows); $output .= "

%: ". t("Matches any number of characters, even zero characters") .".
_: ". t("Matches exactly one character.") ."

"; @@ -1326,7 +1326,7 @@ function user_admin_perm($edit = array()) { unset($row); } - $output = table($header, $rows); + $output = theme("table", $header, $rows); $output .= form_submit(t("Save permissions")); return form($output); @@ -1378,7 +1378,7 @@ function user_admin_role($edit = array()) { } $rows[] = array("", ""); - $output = table($header, $rows); + $output = theme("table", $header, $rows); $output = form($output); } @@ -1506,7 +1506,7 @@ function user_admin_account() { if (!empty($pager)) { $rows[] = array(array("data" => $pager, "colspan" => 6)); } - return table($header, $rows); + return theme("table", $header, $rows); } function user_role_init() { -- cgit v1.2.3