summaryrefslogtreecommitdiff
path: root/modules/cron.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/cron.module')
-rw-r--r--modules/cron.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cron.module b/modules/cron.module
index 05dbdb0eb..d316b0b39 100644
--- a/modules/cron.module
+++ b/modules/cron.module
@@ -1,4 +1,4 @@
-<?
+<?php
$module = array("help" => "cron_help",
"admin" => "cron_admin");
@@ -8,7 +8,7 @@ function cron_help() {
<P>Cron (which stands for chronograph) is a periodic command scheduler: it executes commands at intervals specified in seconds. It can be used to control the execution of daily, weekly and monthly jobs (or anything with a period of <i>n</i> seconds). Automating tasks is one of the best ways to keep a system running smoothly, and if most of your administration does not require your direct involvement, cron is an ideal solution.</P>
<P>Note that cron does not guarantee the commands will be executed at the specified interval. However, the engine will make sure that the commands are run as close to the specified intervals as possible.</P>
<P>Check the documentation page for more information about cron and how to setup it correctly.</P>
- <?
+ <?php
}
function cron_save($edit) {