remove module cron, not needed
authorgreg gay <ggay@ocad.ca>
Thu, 27 Jan 2011 20:38:42 +0000 (20:38 -0000)
committergreg gay <ggay@ocad.ca>
Thu, 27 Jan 2011 20:38:42 +0000 (20:38 -0000)
mods/basiclti/module.php
mods/basiclti/module_cron.php [deleted file]

index 7b9632f..e5ebb5e 100644 (file)
@@ -4,8 +4,8 @@
  */
 if (!defined('AT_INCLUDE_PATH')) { exit; }
 
-error_reporting(E_ALL & ~E_NOTICE);
-ini_set("display_errors", 1);
+//error_reporting(E_ALL & ~E_NOTICE);
+//ini_set("display_errors", 1);
 
 /******
  * this file must only be included within a Module obj
diff --git a/mods/basiclti/module_cron.php b/mods/basiclti/module_cron.php
deleted file mode 100644 (file)
index 2d4f74d..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-/*******
- * this function named [module_name]_cron is run by the global cron script at the module's specified
- * interval.
- */
-
-function basiclti_cron() {
-       global $db;
-
-       debug('yay i am running!');
-}
-
-?>