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/forum.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/forum.module') 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") ."

"; } - $output .= table($forum_topic_list_header, $rows); + $output .= theme("table", $forum_topic_list_header, $rows); return $output; } -- cgit v1.2.3