From fb45bfb3fa307ec3fa8c03c2b345340df8939921 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 19 Jan 2021 18:55:32 -0700 Subject: [PATCH] Add dialplan_detail_enabled to the app_config.php file. --- app/dialplans/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/dialplans/app_config.php b/app/dialplans/app_config.php index e2eac554ec..f683cdbf45 100644 --- a/app/dialplans/app_config.php +++ b/app/dialplans/app_config.php @@ -226,5 +226,9 @@ $apps[$x]['db'][$y]['fields'][$z]['name'] = "dialplan_detail_order"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "dialplan_detail_enabled"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; ?>