From 5c4a50c68be76142f06e477c86ef451347bc2970 Mon Sep 17 00:00:00 2001 From: Yasen Pramatarov Date: Thu, 29 Jan 2026 10:40:33 +0200 Subject: [PATCH] Moves the datetime helper loading to index --- public_html/index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public_html/index.php b/public_html/index.php index cf7598f..6538d9a 100644 --- a/public_html/index.php +++ b/public_html/index.php @@ -27,6 +27,9 @@ use App\Core\ConfigLoader; use App\App; use App\Core\PluginRouteRegistry; +// Load the core datetime helper for all user-facing dates/times +require_once APP_PATH . 'helpers/datetime.php'; + // Load configuration $config = ConfigLoader::loadConfig([ APP_PATH . 'config/jilo-web.conf.php',