Fix html parser

Add "login.active_backgroud" setting
This commit is contained in:
RainLoop Team 2016-10-20 22:38:29 +03:00
parent 52018b40e8
commit 1b7c6f76d1
5 changed files with 32 additions and 66 deletions

View file

@ -1457,6 +1457,7 @@ class Actions
'registrationLinkUrl' => \trim($oConfig->Get('login', 'registration_link_url', '')),
'loginGlassStyle' => (bool) $oConfig->Get('login', 'glass_style', true),
'hideSubmitButton' => (bool) $oConfig->Get('login', 'hide_submit_button', true),
'activeBackgroud' => (bool) $oConfig->Get('login', 'active_backgroud', true),
'jsHash' => \md5(\RainLoop\Utils::GetConnectionToken()),
'useImapThread' => (bool) $oConfig->Get('labs', 'use_imap_thread', false),
'useImapSubscribe' => (bool) $oConfig->Get('labs', 'use_imap_list_subscribe', true),

View file

@ -249,8 +249,9 @@ class Application extends \RainLoop\Config\AbstractConfig
'welcome_page' => array(false, ''),
'glass_style' => array(true, ''),
'hide_submit_button' => array(true, ''),
'glass_style' => array(true),
'hide_submit_button' => array(true),
'active_backgroud' => array(true),
'forgot_password_link_url' => array('', ''),
'registration_link_url' => array('', ''),