summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/cloud.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/cloud.module b/modules/cloud.module
index 9b40ca293..357e45501 100644
--- a/modules/cloud.module
+++ b/modules/cloud.module
@@ -13,7 +13,7 @@ function cloud_help() {
}
function cloud_cron() {
- if (time() % 250 == 0) {
+ if (time() % 25 == 0) {
$result = db_query("SELECT * FROM site");
}
else {
@@ -148,15 +148,15 @@ function cloud_page() {
if (user_access("access site cloud")) {
$theme->header();
- $theme->box(t("Site rolling"), cloud_list(100));
+ $theme->box(t("Site cloud"), cloud_list(100));
$theme->footer();
}
}
function cloud_block() {
- $block[0]["subject"] = t("Site rolling");
+ $block[0]["subject"] = t("Site cloud");
$block[0]["content"] = cloud_list(20);
- $block[0]["info"] = t("Site rolling");
+ $block[0]["info"] = t("Site cloud");
return $block;
}