diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-21 06:42:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-21 06:42:38 +0000 |
commit | 94e30bf7761f5857945df906ae5ba7da5c2fc9b5 (patch) | |
tree | b7a3c1801f3ba7ef2be6a0a3c0bde0781542a234 /cron.php | |
parent | 6696028a759b50e5551f471e4d71443744201da4 (diff) | |
download | drupal-94e30bf7761f5857945df906ae5ba7da5c2fc9b5.tar.gz drupal-94e30bf7761f5857945df906ae5ba7da5c2fc9b5.zip |
- Patch by JonBob: for consistency and readability, add brief descriptions of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
Diffstat (limited to 'cron.php')
-rw-r--r-- | cron.php | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,11 @@ <?php // $Id$ +/** + * @file + * Handles incoming requests to fire of regularly-scheduled tasks (cron jobs). + */ + include_once 'includes/bootstrap.inc'; include_once 'includes/common.inc' ; |