From 2cb787c51cc24665c15c7b575c76f08f8488fed4 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 19 Oct 2020 22:30:33 -0600 Subject: [PATCH] Update app_config.php Change voicemail_id to numeric. --- app/voicemails/app_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/voicemails/app_config.php b/app/voicemails/app_config.php index 60a2d41e43..c357ce090a 100644 --- a/app/voicemails/app_config.php +++ b/app/voicemails/app_config.php @@ -317,7 +317,7 @@ $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary"; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "voicemail_id"; - $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the voicemail id."; $z++;