From 0d67eed8d219bc81fa2d2576031e47b0e90d5d46 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 26 May 2020 13:36:12 -0600 Subject: [PATCH] Change calling_code to a more descriptive name of country_code. --- core/default_settings/app_config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/default_settings/app_config.php b/core/default_settings/app_config.php index 3f61819d61..82be5c2f5c 100644 --- a/core/default_settings/app_config.php +++ b/core/default_settings/app_config.php @@ -539,7 +539,8 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "The numerical code."; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = "calling_code"; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "country_code"; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "calling_code"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "The calling code.";