diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-06 13:58:38 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-06 13:58:38 -0500 |
commit | 0d9e96f36c3397730b2674cdd48a6c17298d80b3 (patch) | |
tree | 853a2a169069233dbe4f6ae5c3277b05d3b232eb | |
parent | 2615252b460c01dd54170fed510516a1c50e3a42 (diff) | |
download | elgg-0d9e96f36c3397730b2674cdd48a6c17298d80b3.tar.gz elgg-0d9e96f36c3397730b2674cdd48a6c17298d80b3.tar.bz2 |
$CONFIG->input is never initialized by page handling so this code never did anything
-rw-r--r-- | engine/lib/cron.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engine/lib/cron.php b/engine/lib/cron.php index 8af640396..f7a032f4a 100644 --- a/engine/lib/cron.php +++ b/engine/lib/cron.php @@ -50,10 +50,6 @@ function cron_page_handler($page) { $params = array(); $params['time'] = time(); - foreach ($CONFIG->input as $k => $v) { - $params[$k] = $v; - } - // Data to return to $std_out = ""; $old_stdout = ""; |