diff options
| author | Connor Thomson <blumatrikz@gmail.com> | 2026-09-18 17:47:23 -0700 |
|---|---|---|
| committer | Connor Thomson <blumatrikz@gmail.com> | 2026-09-18 17:47:23 -0700 |
| commit | 2dcc385ccd22bc2d70208d5cac2d2398a40ff34e (patch) | |
| tree | eb3c6d0ec705cb1612f27b4f175d275dac7df0a4 /app.php | |
| parent | a0c728c38fbde41b89e5a345ff2b0b06e5acfc74 (diff) | |
Fix path issue in app.php
Diffstat (limited to 'app.php')
| -rw-r--r-- | app.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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'; |
