diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-01-05 21:50:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-01-05 21:50:00 +0000 |
commit | 1a31862db97f4f995f29c99ffdcbf072d48bed45 (patch) | |
tree | ee68e38139f90d07801cab9bfbde5bc69c8add78 /modules | |
parent | a17812ccdb97683560ae8614b4ac65ff456c4cec (diff) | |
download | brdo-1a31862db97f4f995f29c99ffdcbf072d48bed45.tar.gz brdo-1a31862db97f4f995f29c99ffdcbf072d48bed45.tar.bz2 |
- Made updating "old" feeds a bit more fine grained.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/cloud.module | 8 |
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; } |