From c1d48b99124dd8c1e650a80bc2a9c4dfcb210f3f Mon Sep 17 00:00:00 2001 From: BJRambo Date: Sat, 19 Aug 2017 17:03:19 +0900 Subject: [PATCH] Add to default user_notify_setting. --- modules/ncenterlite/ncenterlite.model.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/ncenterlite/ncenterlite.model.php b/modules/ncenterlite/ncenterlite.model.php index 392b01f98..0487100c1 100644 --- a/modules/ncenterlite/ncenterlite.model.php +++ b/modules/ncenterlite/ncenterlite.model.php @@ -65,6 +65,10 @@ class ncenterliteModel extends ncenterlite if(!$config->skin) $config->skin = 'default'; if(!$config->colorset) $config->colorset = 'black'; if(!$config->zindex) $config->zindex = '9999'; + if(!$config->user_notify_setting) + { + $config->user_notify_setting = 'N'; + } self::$config = $config; }