Navigation Menu

Skip to content

Commit

Permalink
Better fix for Issue #414
Browse files Browse the repository at this point in the history
  • Loading branch information
tbar0970 committed Jan 10, 2018
1 parent 19e89cb commit ae93206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/config_manager.class.php
Expand Up @@ -51,7 +51,7 @@ public static function migrateEnabledFeatures()
{
$value = explode(',', ENABLED_FEATURES);
$value = array_diff($value, Array('DATES'));
self::saveSetting('ENABLED_FEATURES', $value);
self::saveSetting('ENABLED_FEATURES', implode(',', $value));

}

Expand Down

0 comments on commit ae93206

Please sign in to comment.