Use a variable for the config file

This commit is contained in:
Jacob 2023-09-30 20:09:33 +02:00
parent dd33bbc1ba
commit 12af23d88f

View file

@ -4,6 +4,7 @@
* Licensed under the GNU Affero General Public License version 3.0 * Licensed under the GNU Affero General Public License version 3.0
*/ */
$configFile = "config.ini";
$Stylesheet = "index.css"; $Stylesheet = "index.css";
$Icon = "favicon.svg"; $Icon = "favicon.svg";
$uploadDir = "uploads/"; $uploadDir = "uploads/";
@ -25,9 +26,7 @@ $enableTemporaryKeys = true;
$enableUploadRemoval = true; $enableUploadRemoval = true;
$enableKeyUploadRemoval = true; $enableKeyUploadRemoval = true;
define('CONFIG_FILE', 'config.ini'); if (!file_exists($configFile)) {
if (!file_exists(CONFIG_FILE)) {
return; return;
} }