removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / tools / cron.d / S90__monthly__.php
diff --git a/mods/wiki/tools/cron.d/S90__monthly__.php b/mods/wiki/tools/cron.d/S90__monthly__.php
deleted file mode 100644 (file)
index ae402f0..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-/*
-   Stops following parts from execution if not a month has elapsed
-   since last run.
-*/
-
-if ($anacron["month"] + 29 * 24 * 3599 >= time()) {
-   $GOTO = 98;   // skip most __monthly__ scripts without '$HALT'ing rest
-   echo "[$cron]: no month has elapsed since last run yet, not running any script now\n";
-}
-else {
-   $anacron["month"] = EWIKI_CRON;
-   echo "[$cron]: proceeding\n";
-}
-
-?>
\ No newline at end of file