Fix type reminder "push" to "browser"

This commit is contained in:
atm-lena 2020-08-27 09:35:02 +02:00
parent bbc554070c
commit 9d1fc28eba

View File

@ -1183,7 +1183,7 @@ if ($action == 'create')
//Reminder Type
$TRemindTypes = array();
if(!empty($conf->global->AGENDA_REMINDER_EMAIL)) $TRemindTypes['email'] = $langs->trans('EMail');
if(!empty($conf->global->AGENDA_REMINDER_BROWSER)) $TRemindTypes['push'] = $langs->trans('BrowserPush');
if(!empty($conf->global->AGENDA_REMINDER_BROWSER)) $TRemindTypes['browser'] = $langs->trans('BrowserPush');
print '<tr><td class="titlefieldcreate nowrap">'.$langs->trans("ReminderType").'</td><td colspan="3">';
print $form->selectarray('selectremindertype',$TRemindTypes);
print '</td></tr>';