diff --git a/install/sql/system.sql b/install/sql/system.sql index 9a31781875..d665d9439b 100644 --- a/install/sql/system.sql +++ b/install/sql/system.sql @@ -347,7 +347,6 @@ INSERT INTO `sys_options`(`category_id`, `name`, `caption`, `value`, `type`, `ex (@iCategoryId, 'enable_gd', '_adm_stg_cpt_option_enable_gd', 'on', 'checkbox', '', '', '', '', 100), (@iCategoryId, 'sys_transcoder_queue_storage', '_adm_stg_cpt_option_sys_transcoder_queue_storage', '', 'checkbox', '', '', '', '', 105), -(@iCategoryId, 'sys_live_search_limit', '_adm_stg_cpt_option_sys_live_search_limit', '5', 'digit', '', '', '', '', 107), (@iCategoryId, 'sys_session_lifetime_in_min', '_adm_stg_cpt_option_sys_session_lifetime_in_min', '129600', 'digit', '', '', '', '', 110), (@iCategoryId, 'sys_session_auth', '_adm_stg_cpt_option_sys_session_auth', '', 'checkbox', '', '', '', '', 112), @@ -547,6 +546,7 @@ INSERT INTO `sys_options`(`category_id`, `name`, `caption`, `value`, `type`, `ex (@iCategoryId, 'sys_per_page_search_keyword_single', '_adm_stg_cpt_option_sys_per_page_search_keyword_single', '24', 'digit', '', '', '', 20), (@iCategoryId, 'sys_per_page_search_keyword_plural', '_adm_stg_cpt_option_sys_per_page_search_keyword_plural', '3', 'digit', '', '', '', 21), +(@iCategoryId, 'sys_live_search_limit', '_adm_stg_cpt_option_sys_live_search_limit', '5', 'digit', '', '', '', '', 22), (@iCategoryId, 'sys_metatags_hashtags_max', '_adm_stg_cpt_option_sys_metatags_hashtags_max', '9', 'digit', '', '', '', 30), (@iCategoryId, 'sys_metatags_mentions_max', '_adm_stg_cpt_option_sys_metatags_mentions_max', '9', 'digit', '', '', '', 31), diff --git a/template/scripts/BxBaseServices.php b/template/scripts/BxBaseServices.php index 1a4e65102e..20afeebdc2 100644 --- a/template/scripts/BxBaseServices.php +++ b/template/scripts/BxBaseServices.php @@ -52,6 +52,7 @@ public function serviceGetSafeServices() 'CreateAccountForm' => 'BxBaseServiceAccount', 'ForgotPassword' => 'BxBaseServiceAccount', 'SwitchProfile' => 'BxBaseServiceAccount', + 'EmailConfirmation' => 'BxBaseServiceAccount', 'CategoriesList' => 'BxBaseServiceCategory',