aboutsummaryrefslogtreecommitdiffstats
path: root/include/channel.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-02-23 12:44:07 -0800
committerzotlabs <mike@macgirvin.com>2018-02-23 12:44:07 -0800
commit048a636315671b7e9aaf9152273d101994e37c43 (patch)
treebe68c8f97f4e6de7040fcc276511b89dc749551b /include/channel.php
parent5e53f36f340472c593d88e40d69628eac017f441 (diff)
downloadvolse-hubzilla-048a636315671b7e9aaf9152273d101994e37c43.tar.gz
volse-hubzilla-048a636315671b7e9aaf9152273d101994e37c43.tar.bz2
volse-hubzilla-048a636315671b7e9aaf9152273d101994e37c43.zip
Usability and member experience: remove street address info from the default basic profile fields, mention that the site banner can be full HTML, mention on the techlevel setting that this also controls what additional features may be visible.
Diffstat (limited to 'include/channel.php')
-rw-r--r--include/channel.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/channel.php b/include/channel.php
index 625ce16c8..d1d41d378 100644
--- a/include/channel.php
+++ b/include/channel.php
@@ -1897,7 +1897,7 @@ function get_profile_fields_basic($filter = 0) {
$profile_fields_basic = (($filter == 0) ? get_config('system','profile_fields_basic') : null);
if(! $profile_fields_basic)
- $profile_fields_basic = array('fullname','pdesc','chandesc','comms','gender','dob','dob_tz','address','locality','region','postal_code','country_name','marital','sexual','homepage','hometown','keywords','about','contact');
+ $profile_fields_basic = array('fullname','pdesc','chandesc','comms','gender','dob','dob_tz','region','country_name','marital','sexual','homepage','hometown','keywords','about','contact');
$x = array();
if($profile_fields_basic)
@@ -1912,7 +1912,7 @@ function get_profile_fields_advanced($filter = 0) {
$basic = get_profile_fields_basic($filter);
$profile_fields_advanced = (($filter == 0) ? get_config('system','profile_fields_advanced') : null);
if(! $profile_fields_advanced)
- $profile_fields_advanced = array('partner','howlong','politic','religion','likes','dislikes','interest','channels','music','book','film','tv','romance','employment','education');
+ $profile_fields_advanced = array('address','locality','postal_code','partner','howlong','politic','religion','likes','dislikes','interest','channels','music','book','film','tv','romance','employment','education');
$x = array();
if($basic)