diff options
author | redmatrix <git@macgirvin.com> | 2016-06-22 18:00:18 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-22 18:00:18 -0700 |
commit | ec8091a102b9cb2f8f47ef87982533bcd5ba9886 (patch) | |
tree | b02ddad387f2668bb931d5d441acc8133e9a39b2 /include/channel.php | |
parent | f48b12ff52c4fda85c09c1cc476f7cf4c0cfb649 (diff) | |
download | volse-hubzilla-ec8091a102b9cb2f8f47ef87982533bcd5ba9886.tar.gz volse-hubzilla-ec8091a102b9cb2f8f47ef87982533bcd5ba9886.tar.bz2 volse-hubzilla-ec8091a102b9cb2f8f47ef87982533bcd5ba9886.zip |
use the normal html escape for '@' in addresses rather than the high-plane unicode variant. This makes it copy-able, but not easily scrape-able.
Diffstat (limited to 'include/channel.php')
-rw-r--r-- | include/channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channel.php b/include/channel.php index 562aedddc..a0424ee39 100644 --- a/include/channel.php +++ b/include/channel.php @@ -862,7 +862,7 @@ function profile_load(&$a, $nickname, $profile = '') { ); if($z) { $p[0]['picdate'] = $z[0]['xchan_photo_date']; - $p[0]['reddress'] = str_replace('@','@',$z[0]['xchan_addr']); + $p[0]['reddress'] = str_replace('@','@',$z[0]['xchan_addr']); } // fetch user tags if this isn't the default profile |