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/statistics/statistics.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/statistics/statistics.module') diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index f1f76a944..1be70182b 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -340,7 +340,7 @@ function statistics_admin_topnodes_table() { $rows[] = array(array("data" => $pager, "colspan" => 5)); } - return table($header, $rows); + return theme("table", $header, $rows); } @@ -399,7 +399,7 @@ function statistics_admin_accesslog_table($type, $id) { $rows[] = array(array("data" => $pager, "colspan" => 8)); } - return table($header, $rows); + return theme("table", $header, $rows); } function statistics_top_refer() { @@ -440,7 +440,7 @@ function statistics_top_refer() { $rows[] = array(array("data" => $pager, "colspan" => 3)); } - $output .= table($header, $rows); + $output .= theme("table", $header, $rows); return $output; -- cgit v1.2.3