From 13d8e86b7d2a9960c9a87a56aca23f5bfe951936 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 10 Aug 2012 16:34:11 +0000 Subject: [PATCH] Fix a problem with the description of extension_enabled in the app_config.php file. Please note: adding this field requires the fusionpbx/core/upgrade/upgrade.php to be run from the command line. --- core/users/app_config.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/core/users/app_config.php b/core/users/app_config.php index 7239769e96..201161d2bc 100644 --- a/core/users/app_config.php +++ b/core/users/app_config.php @@ -154,13 +154,12 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'user_time_zone'; - $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'usertimezone'; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'user_enabled'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; - $apps[$x]['db'][$y]['fields'][$z]['deprecated'] = 'true'; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'user_enabled'; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'user_time_zone'; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'usertimezone'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; $apps[$x]['db'][$y]['fields'][$z]['deprecated'] = 'true';