1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Issues Addressed:

Created cron task that will check if there is a newer version of e107 available. If so, email site admin, create log entry and trigger message for site admin

Files altered:
e107_admin\cron.php
e107_handlers\cron_class.php
e107_languages\English\admin\lan_cron.php

Related to:
20cb65f539
This commit is contained in:
jburns131
2013-05-12 02:16:03 -04:00
parent 27fceb8758
commit 595efb141f
3 changed files with 95 additions and 2 deletions

View File

@@ -155,6 +155,20 @@ class cron_admin_ui extends e_admin_ui
'description' => LAN_CRON_05_2 .' '.e_SYSTEM.'backups/'
// 'available' => e107::getPref('ban_retrigger')
),
5 => array(
'name' => LAN_CRON_06_1,
'category' => 'user',
'function' => 'procBanRetrigger',
'description' => LAN_CRON_06_2 ."<br />". LAN_CRON_06_3,
// 'available' => e107::getPref('ban_retrigger')
),
6 => array(
'name' => LAN_CRON_20_1,
'category' => '',
'function' => 'checkCoreUpdate',
'description' => LAN_CRON_20_2 ."<br />". LAN_CRON_20_3,
// 'available' => e107::getPref('ban_retrigger')
),
);
if(!vartrue($_GET['action']) || $_GET['action'] == 'refresh')