missing closing single quote (#1300)
parent
06c520590f
commit
2f49271538
|
@ -9,5 +9,5 @@ define('PSM_BASE_URL', '');
|
||||||
define('PSM_WEBCRON_KEY', '');
|
define('PSM_WEBCRON_KEY', '');
|
||||||
define('PSM_WEBCRON_ENABLE_IP_WHITELIST', 'true'); // Enable IP whitelisting for calling webcron
|
define('PSM_WEBCRON_ENABLE_IP_WHITELIST', 'true'); // Enable IP whitelisting for calling webcron
|
||||||
define('PSM_PUBLIC', false);
|
define('PSM_PUBLIC', false);
|
||||||
define('PSM_UPTIME_ARCHIVE', 'monthly);
|
define('PSM_UPTIME_ARCHIVE', 'monthly');
|
||||||
|
|
||||||
|
|
|
@ -124,7 +124,7 @@ namespace {
|
||||||
// check for a uptime archive
|
// check for a uptime archive
|
||||||
// This should be defined in the config
|
// This should be defined in the config
|
||||||
if (!defined('PSM_UPTIME_ARCHIVE')) {
|
if (!defined('PSM_UPTIME_ARCHIVE')) {
|
||||||
define('PSM_UPTIME_ARCHIVE', 'monthly);
|
define('PSM_UPTIME_ARCHIVE', 'monthly');
|
||||||
}
|
}
|
||||||
|
|
||||||
$lang = psm_get_conf('language', 'en_US');
|
$lang = psm_get_conf('language', 'en_US');
|
||||||
|
|
Loading…
Reference in New Issue