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/cloud.module | |
parent | e8de9721d83489a836f3d74f982f751d358fbc9e (diff) | |
download | brdo-36bb57555c1be31a19db442db35befba3188633a.tar.gz brdo-36bb57555c1be31a19db442db35befba3188633a.tar.bz2 |
- table(...) -> theme("table", ...)
Diffstat (limited to 'modules/cloud.module')
-rw-r--r-- | modules/cloud.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cloud.module b/modules/cloud.module index 0983dc84e..31b5ebfb7 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -143,7 +143,7 @@ function cloud_display() { $rows[] = array("<a href=\"$site->link\">$site->name</a>", ($site->changed ? format_interval(time() - $site->changed) ." ago" : "never"), l(t("edit site"), "admin/node/syndication/cloud/edit/$site->sid"), l(t("update site"), "admin/node/syndication/cloud/update/$site->sid")); } - return table($header, $rows); + return theme("table", $header, $rows); } function cloud_list($limit = 10) { |