From dc8103ba3c84569dc880a55080fe3c9579d49046 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 3 Sep 2016 15:24:22 -0600 Subject: [PATCH] Update app_config.php Add voicemail message intro for base64. --- app/voicemails/app_config.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/voicemails/app_config.php b/app/voicemails/app_config.php index e718141f9b..3cbefe7621 100644 --- a/app/voicemails/app_config.php +++ b/app/voicemails/app_config.php @@ -175,6 +175,11 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Voicemail message priority."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "message_intro_base64"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Voicemail intro encoded in base64."; + $z++; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "message_base64"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Voicemail file encoded in base64."; @@ -259,4 +264,4 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $z++; -?> \ No newline at end of file +?>