summaryrefslogtreecommitdiff
path: root/modules/cvs.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-05-24 15:31:17 +0000
committerDries Buytaert <dries@buytaert.net>2001-05-24 15:31:17 +0000
commit7b56d82aa227d3ea32a7e89121510983d9bf31de (patch)
tree67fd39a1287e9b25a390e747c503da829a6925c2 /modules/cvs.module
parentbf3772bada72ca3f573e03cf6670b7d26cb1f858 (diff)
downloadbrdo-7b56d82aa227d3ea32a7e89121510983d9bf31de.tar.gz
brdo-7b56d82aa227d3ea32a7e89121510983d9bf31de.tar.bz2
- Improved the crons and cron settings a bit.
- Added a cron to queue.module to automatically discard or dump nodes older than x days.
Diffstat (limited to 'modules/cvs.module')
-rw-r--r--modules/cvs.module3
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/cvs.module b/modules/cvs.module
index 1202047a6..7eefac3de 100644
--- a/modules/cvs.module
+++ b/modules/cvs.module
@@ -2,9 +2,6 @@
function cvs_cron() {
if (time() - variable_get("cvs_cron_last", 0) > variable_get("cvs_cron_time", time())) {
-
- print "cvs cron ran";
-
variable_set("cvs_cron_last", time());
$result = db_query("SELECT * FROM cvs WHERE status = '0' ORDER BY timestamp DESC LIMIT 50");