diff options
Diffstat (limited to 'modules/cloud.module')
-rw-r--r-- | modules/cloud.module | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/modules/cloud.module b/modules/cloud.module index 4006ac775..8c1612445 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -1,9 +1,6 @@ <?php // $Id$ -function cloud_help() { -} - function cloud_cron() { if (time() % 250 == 0) { $result = db_query("SELECT * FROM site"); @@ -139,15 +136,15 @@ function cloud_page() { if (user_access("access site cloud")) { $theme->header(); - $theme->box(t("Updated sites"), cloud_list(100)); + $theme->box(t("Site rolling"), cloud_list(100)); $theme->footer(); } } function cloud_block() { - $block[0]["subject"] = t("Sites"); + $block[0]["subject"] = t("Site rolling"); $block[0]["content"] = cloud_list(20); - $block[0]["info"] = t("Sites"); + $block[0]["info"] = t("Site rolling"); return $block; } |