From 289cbff7ad692c4794723ac4532a333dfefd3a59 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 20 Sep 2016 09:42:00 -0600 Subject: [PATCH] Update app_config.php Add voicemail_alternate_greet_id to the database. --- app/voicemails/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/voicemails/app_config.php b/app/voicemails/app_config.php index 3cbefe7621..6f9f862a07 100644 --- a/app/voicemails/app_config.php +++ b/app/voicemails/app_config.php @@ -95,6 +95,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the greeting id."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "voicemail_alternate_greet_id"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Used to provide an alternate id for the voicemail announcement."; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "voicemail_mail_to"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the email address to send voicemail to.";