From 9d1fc28eba249121916ca5bbd6be854c095b50a6 Mon Sep 17 00:00:00 2001 From: atm-lena Date: Thu, 27 Aug 2020 09:35:02 +0200 Subject: [PATCH] Fix type reminder "push" to "browser" --- htdocs/comm/action/card.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/comm/action/card.php b/htdocs/comm/action/card.php index bf7b7ccfaf4..d05b0914254 100644 --- a/htdocs/comm/action/card.php +++ b/htdocs/comm/action/card.php @@ -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 ''.$langs->trans("ReminderType").''; print $form->selectarray('selectremindertype',$TRemindTypes); print '';