diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-13 19:52:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-13 19:52:54 +0000 |
commit | 36bb57555c1be31a19db442db35befba3188633a (patch) | |
tree | 6574d74df4b72cfe71d07f1aff33acb4761756c7 /modules/forum.module | |
parent | e8de9721d83489a836f3d74f982f751d358fbc9e (diff) | |
download | brdo-36bb57555c1be31a19db442db35befba3188633a.tar.gz brdo-36bb57555c1be31a19db442db35befba3188633a.tar.bz2 |
- table(...) -> theme("table", ...)
Diffstat (limited to 'modules/forum.module')
-rw-r--r-- | modules/forum.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum.module b/modules/forum.module index e305d025c..34709d39b 100644 --- a/modules/forum.module +++ b/modules/forum.module @@ -574,7 +574,7 @@ function theme_forum_list($forums, $parents, $tid) { } } - return table($header, $rows); + return theme("table", $header, $rows); } /** @@ -623,7 +623,7 @@ function theme_forum_topic_list($tid, $topics, $sortby, $forum_per_page, $offset $output = l(t("create new forum topic"), "node/add/forum/$tid") ."<br /><br />"; } - $output .= table($forum_topic_list_header, $rows); + $output .= theme("table", $forum_topic_list_header, $rows); return $output; } |