From 1d71e48efe23e2c28475b6d98523b67e4e8809d6 Mon Sep 17 00:00:00 2001 From: SuperDev Date: Thu, 22 Dec 2022 12:24:14 -0600 Subject: [PATCH] Update config.php --- system/config.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/config.php b/system/config.php index e0da0b6..a512d0f 100644 --- a/system/config.php +++ b/system/config.php @@ -9,6 +9,7 @@ $password = getenv('ADMIN_PASSWORD') ?? 'password'; $appname = getenv('APP_NAME') ?? 'AnonUpload - Secure File Sharing'; $appdesc = getenv('APP_DESC') ?? 'Secure and anonymous file sharing'; $applogo = getenv('APP_LOGO_IMAGE') ?? 'assets/images/logo.png'; +$appcontact = getenv('APP_CONTACT_EMAIL'); // Plausible analytics $plausibledomain = getenv('PLAUSIBLE_DOMAIN'); @@ -39,6 +40,7 @@ define('file_destination', $filedestination); define('file_url_destination', $baseurl); define('max_size', $maxsize); define('min_size', $minsize); +define('app_contact_email', $appcontact); /* Analytics */ define('plausibledomain', $plausibledomain);