aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profiles.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-05-25 15:56:18 -0700
committerfriendica <info@friendica.com>2012-05-25 15:56:18 -0700
commit27c903a8d0d9e8eeca31a21356256593da683da6 (patch)
tree01189af443f4d6b15d44bb90f6794577a599fca4 /mod/profiles.php
parentfafd41f4bfcebdc0560f6b458df2cb089fce63ff (diff)
downloadvolse-hubzilla-27c903a8d0d9e8eeca31a21356256593da683da6.tar.gz
volse-hubzilla-27c903a8d0d9e8eeca31a21356256593da683da6.tar.bz2
volse-hubzilla-27c903a8d0d9e8eeca31a21356256593da683da6.zip
improve location change notifications
Diffstat (limited to 'mod/profiles.php')
-rw-r--r--mod/profiles.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/mod/profiles.php b/mod/profiles.php
index 8e4fba74e..ca3890eb9 100644
--- a/mod/profiles.php
+++ b/mod/profiles.php
@@ -176,9 +176,18 @@ function profiles_post(&$a) {
$changes[] = t('Interests');
$value = $interest;
}
- if($address != $orig[0]['address'] || $locality != $orig[0]['locality'] || $region != $orig[0]['region']
+ if($address != $orig[0]['address']) {
+ $changes[] = t('Address');
+ // New address not sent in notifications, potential privacy issues
+ // in case this leaks to unintended recipients. Yes, it's in the public
+ // profile but that doesn't mean we have to broadcast it to everybody.
+ }
+ if($locality != $orig[0]['locality'] || $region != $orig[0]['region']
|| $country_name != $orig[0]['country-name']) {
$changes[] = t('Location');
+ $comma1 = ((($locality) && ($region || $country_name)) ? ', ' : ' ');
+ $comma2 = (($region && $country_name) ? ', ' : '');
+ $value = $locality . $comma1 . $region . $comma2 . $country_name;
}
profile_activity($changes,$value);