mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-07-14 12:04:24 +02:00
Add notification reminder settings and improve PHP configuration
This commit is contained in:
parent
dfdf35286f
commit
366ef73d57
9 changed files with 150 additions and 17 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue