X-Git-Url: http://git.pjr.cc/?p=glcas.git;a=blobdiff_plain;f=plugins%2Fcron.php;fp=plugins%2Fcron.php;h=5f53320715dc90cea93468cbdc2ca5e9201c960b;hp=ca993097230b1ec1966acf50c58063088a31931d;hb=e81521d3926c7dff1484e5c86a02dcfd8dc93b8e;hpb=e45207eb04184d0ee4c7f7b77bbe74b599c1a003 diff --git a/plugins/cron.php b/plugins/cron.php index ca99309..5f53320 100644 --- a/plugins/cron.php +++ b/plugins/cron.php @@ -15,18 +15,22 @@ class GLCASCron { global $CRON_CLASSES; echo ""; + echo ""; foreach($CRON_CLASSES as $crons) { $calling = new $crons($this->config); + echo ""; } else { - echo "CRON: would call $crons"."->cron but it doesnt exist
"; + echo "CRON: would call $crons"."->cron but it doesnt exist
"; } + } + echo "
"; if(method_exists($crons, "cron")) { - echo "CRON: Calling $crons"."->cron:
"; - echo "
$crons"; + echo "CRON: Calling cron for $crons"; + echo "
"; $calling->cron(); - echo "
"; + echo "
"; echo ""; }