From eb89b15c0f044673c1206a418a21d0baba1a675e Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Sun, 12 Mar 2023 19:16:53 +0100 Subject: Updated 104 files, added 3 files, deleted 4 files and renamed 36 files (automated) --- app.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'app.php') diff --git a/app.php b/app.php index 8d3cb02..b6651c9 100644 --- a/app.php +++ b/app.php @@ -2,9 +2,9 @@ ob_start(); -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/language.inc"; global $lang; global $pages; -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.inc"; global $isLoggedIn; global $isLowerLoggedIn; -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/functions.inc"; +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/language.inc"; global $lang; global $pages; +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/session.inc"; global $isLoggedIn; global $isLowerLoggedIn; +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; $app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true); @@ -84,8 +84,8 @@ if (in_array($toplevel, ["editor", "icons", "species", "uploads"])) { require_once $_SERVER['DOCUMENT_ROOT'] . "/pages/page.inc"; } else { global $toplevel; - $pageFile = $_SERVER['DOCUMENT_ROOT'] . "/includes/short.inc"; - require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/short.inc"; + $pageFile = $_SERVER['DOCUMENT_ROOT'] . "/includes/util/short.inc"; + require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/short.inc"; } } } -- cgit