forked from kevinowino869/mitrobill
Add notification reminder settings and improve PHP configuration
This commit is contained in:
@ -216,6 +216,9 @@ switch ($action) {
|
||||
$_POST['man_fields_custom'] = isset($_POST['man_fields_custom']) ? 'yes' : 'no';
|
||||
$enable_session_timeout = isset($_POST['enable_session_timeout']) ? 1 : 0;
|
||||
$_POST['enable_session_timeout'] = $enable_session_timeout;
|
||||
$_POST['notification_reminder_1day'] = isset($_POST['notification_reminder_1day']) ? 'yes' : 'no';
|
||||
$_POST['notification_reminder_3days'] = isset($_POST['notification_reminder_3days']) ? 'yes' : 'no';
|
||||
$_POST['notification_reminder_7days'] = isset($_POST['notification_reminder_7days']) ? 'yes' : 'no';
|
||||
|
||||
// hide dashboard
|
||||
$_POST['hide_mrc'] = _post('hide_mrc', 'no');
|
||||
|
Reference in New Issue
Block a user