From 0467d60eae726af7ef45cb4cfcae267da8e7d650 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 25 Jul 2014 01:45:58 +0000 Subject: [PATCH] Add domain and user setting order --- core/domain_settings/app_config.php | 4 ++++ core/users/app_config.php | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/core/domain_settings/app_config.php b/core/domain_settings/app_config.php index f0bf090477..49cf8513f7 100644 --- a/core/domain_settings/app_config.php +++ b/core/domain_settings/app_config.php @@ -129,6 +129,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the value."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_setting_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'] = "domain_setting_enabled"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; diff --git a/core/users/app_config.php b/core/users/app_config.php index ccb39172d0..6a1e244e01 100644 --- a/core/users/app_config.php +++ b/core/users/app_config.php @@ -431,6 +431,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the value."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "user_setting_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'] = "user_setting_enabled"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";