diff options
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) { |