From e1e3ad0ba9f72f9f25ce7331fa25d919e5d76b85 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 24 May 2016 23:12:01 -0600 Subject: [PATCH] Update app_config.php Add module_order. --- app/modules/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/modules/app_config.php b/app/modules/app_config.php index fbf26f48e8..416298bbe8 100644 --- a/app/modules/app_config.php +++ b/app/modules/app_config.php @@ -73,6 +73,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "module_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']['text'] = "module_enabled"; $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "moduleenabled"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";