From 2dcc385ccd22bc2d70208d5cac2d2398a40ff34e Mon Sep 17 00:00:00 2001 From: Connor Thomson Date: Fri, 18 Sep 2026 17:47:23 -0700 Subject: Fix path issue in app.php --- app.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app.php') diff --git a/app.php b/app.php index cde972d..f9af82c 100644 --- a/app.php +++ b/app.php @@ -3,9 +3,9 @@ ini_set('display_errors', 1); error_reporting(E_ALL); -define('ROOT_DIR', __DIR__ . '/../'); -define('HTML_DIR', __DIR__ . '/../html/'); -define('PHP_DIR', __DIR__ . '/../php/'); +define('ROOT_DIR', __DIR__ . '/'); +define('HTML_DIR', __DIR__ . '/html/'); +define('PHP_DIR', __DIR__ . '/php/'); require_once PHP_DIR . 'templates.php'; -- cgit v1.2.3