summaryrefslogtreecommitdiff
path: root/modules/user/user.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-13 19:52:54 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-13 19:52:54 +0000
commit36bb57555c1be31a19db442db35befba3188633a (patch)
tree6574d74df4b72cfe71d07f1aff33acb4761756c7 /modules/user/user.module
parente8de9721d83489a836f3d74f982f751d358fbc9e (diff)
downloadbrdo-36bb57555c1be31a19db442db35befba3188633a.tar.gz
brdo-36bb57555c1be31a19db442db35befba3188633a.tar.bz2
- table(...) -> theme("table", ...)
Diffstat (limited to 'modules/user/user.module')
-rw-r--r--modules/user/user.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index ab9cf1431..7a218635b 100644
--- a/modules/user/user.module
+++ b/modules/user/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 .= "<p><small>%: ". t("Matches any number of characters, even zero characters") .".<br />_: ". t("Matches exactly one character.") ."</small></p>";
@@ -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("<input type=\"text\" size=\"32\" maxlength=\"64\" name=\"edit[name]\" />", "<input type=\"submit\" name=\"op\" value=\"". t("Add role") ."\" />");
- $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() {