summaryrefslogtreecommitdiff
path: root/modules/system/system.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/system/system.module
parente8de9721d83489a836f3d74f982f751d358fbc9e (diff)
downloadbrdo-36bb57555c1be31a19db442db35befba3188633a.tar.gz
brdo-36bb57555c1be31a19db442db35befba3188633a.tar.bz2
- table(...) -> theme("table", ...)
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 88c74db73..c67722ad2 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -313,7 +313,7 @@ function system_listing($type, $directory, $required = array()) {
$rows[] = array($info->name, $info->description, array("data" => (in_array($filename, $required) ? form_hidden("status][$filename", 1) . t("required") : form_checkbox("", "status][$filename", 1, $file->status)), "align" => "center"));
}
- $output = table($header, $rows);
+ $output = theme("table", $header, $rows);
// If we're doing themes, stick the default one here...
if ($type == "theme") {