]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-cron.php
Wordpress 3.1-scripts
[autoinstalls/wordpress.git] / wp-cron.php
index b7fd6f53dc39c8cebe2596fbb02eeafef19b987b..19427c5c427c6791623a64399023dc76bc24d235 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /**
  * WordPress Cron Implementation for hosts, which do not offer CRON or for which
- * the user has not setup a CRON job pointing to this file.
+ * the user has not set up a CRON job pointing to this file.
  *
  * The HTTP request to this file will not slow down the visitor who happens to
  * visit when the cron job is needed to run.
@@ -22,7 +22,7 @@ if ( !empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON') )
 define('DOING_CRON', true);
 
 if ( !defined('ABSPATH') ) {
-       /** Setup WordPress environment */
+       /** Set up WordPress environment */
        require_once('./wp-load.php');
 }
 
@@ -35,7 +35,7 @@ $local_time = time();
 if ( isset($keys[0]) && $keys[0] > $local_time )
        die();
 
-foreach ($crons as $timestamp  => $cronhooks) {
+foreach ($crons as $timestamp => $cronhooks) {
        if ( $timestamp > $local_time )
                break;