add 'view_show_next_message' to admin settings ('defaults' section)

This commit is contained in:
Sergey Mosin 2023-07-03 19:17:22 -04:00
parent 665aa4a226
commit 2e0077adec
2 changed files with 2 additions and 1 deletions

View file

@ -698,7 +698,7 @@ class Actions
'Layout' => (int) $oConfig->Get('defaults', 'view_layout', Enumerations\Layout::SIDE_PREVIEW),
'EditorDefaultType' => \str_replace('Forced', '', $oConfig->Get('defaults', 'view_editor_type', '')),
'UseCheckboxesInList' => (bool) $oConfig->Get('defaults', 'view_use_checkboxes', true),
'showNextMessage' => false,
'showNextMessage' => (bool) $oConfig->Get('defaults', 'view_show_next_message', false),
'AutoLogout' => (int) $oConfig->Get('defaults', 'autologout', 30),
'AllowDraftAutosave' => (bool) $oConfig->Get('defaults', 'allow_draft_autosave', true),
'ContactsAutosave' => (bool) $oConfig->Get('defaults', 'contacts_autosave', true),

View file

@ -292,6 +292,7 @@ Values:
'view_editor_type' => array('Html', 'Editor mode used by default (Plain, Html)'),
'view_layout' => array(1, 'layout: 0 - no preview, 1 - side preview, 2 - bottom preview'),
'view_use_checkboxes' => array(true),
'view_show_next_message' => array(true, 'Show next message when (re)move current message'),
'autologout' => array(30),
'view_html' => array(true),
'show_images' => array(false),