From 2f49271538e187d63c5cc97f7dfc937f935f9c62 Mon Sep 17 00:00:00 2001 From: Charles Mulder <7zh6dj9f9@mozmail.com> Date: Wed, 23 Apr 2025 16:48:07 +0100 Subject: [PATCH] missing closing single quote (#1300) --- config.php.sample | 2 +- src/bootstrap.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.php.sample b/config.php.sample index bc5056fc..ee2d8990 100644 --- a/config.php.sample +++ b/config.php.sample @@ -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'); diff --git a/src/bootstrap.php b/src/bootstrap.php index a6ba0054..fc77790e 100644 --- a/src/bootstrap.php +++ b/src/bootstrap.php @@ -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');