1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 23:56:58 +02:00

Fixes #5096 - Cron timezone issue. eShims::strftime issue. CronParser test added.

This commit is contained in:
camer0n
2023-11-03 15:07:41 -07:00
parent 9c47060bb5
commit bfb515f2b5
5 changed files with 247 additions and 53 deletions

View File

@@ -44,6 +44,11 @@ if ((PHP_SAPI === "apache" || PHP_SAPI === "litespeed") && $_E107['debug'] === f
require_once(realpath(__DIR__ . "/class2.php"));
if(!empty($_E107['debug']))
{
error_reporting(E_ALL);
}
require_once(e_HANDLER . "cron_class.php");
$cron = new cronScheduler();