missing closing single quote (#1300)

develop
Charles Mulder 2025-04-23 16:48:07 +01:00 committed by GitHub
parent 06c520590f
commit 2f49271538
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -9,5 +9,5 @@ define('PSM_BASE_URL', '');
define('PSM_WEBCRON_KEY', '');
define('PSM_WEBCRON_ENABLE_IP_WHITELIST', 'true'); // Enable IP whitelisting for calling webcron
define('PSM_PUBLIC', false);
define('PSM_UPTIME_ARCHIVE', 'monthly);
define('PSM_UPTIME_ARCHIVE', 'monthly');

View File

@ -124,7 +124,7 @@ namespace {
// check for a uptime archive
// This should be defined in the config
if (!defined('PSM_UPTIME_ARCHIVE')) {
define('PSM_UPTIME_ARCHIVE', 'monthly);
define('PSM_UPTIME_ARCHIVE', 'monthly');
}
$lang = psm_get_conf('language', 'en_US');