removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / tools / cron.d / S70__weekly__.php
diff --git a/mods/wiki/tools/cron.d/S70__weekly__.php b/mods/wiki/tools/cron.d/S70__weekly__.php
deleted file mode 100644 (file)
index 4321699..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/*
-   Checks for elapsion of a week, and halts execution of following
-   scripts, if it wasn't over yet.
-*/
-
-#-- check
-if ($anacron["week"] + 6.75 * 24 * 3599 >= time()) {
-   $GOTO = 90;    //skews to __monthly__
-   echo "[$cron]: no week elapsed, overstepping\n";
-}
-
-#-- update timestamp
-else {
-   $anacron["week"] = EWIKI_CRON;
-   echo "[$cron]: proceeding\n";
-}
-
-?>
\ No newline at end of file