aboutsummaryrefslogtreecommitdiffstats
path: root/include/channel.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-03-13 09:05:40 +0100
committerMario Vavti <mario@mariovavti.com>2018-03-13 09:05:40 +0100
commit150e238b02b442bc528b9626ef01215a18901995 (patch)
tree28ad5a3e395666f475aa2a8c7f417d172b828763 /include/channel.php
parentb265a55b815e46658aadec9021bb00997cb40bc7 (diff)
parentab1d47b36f21e5881900d9d805f4f7876f1c472f (diff)
downloadvolse-hubzilla-150e238b02b442bc528b9626ef01215a18901995.tar.gz
volse-hubzilla-150e238b02b442bc528b9626ef01215a18901995.tar.bz2
volse-hubzilla-150e238b02b442bc528b9626ef01215a18901995.zip
Merge remote-tracking branch 'mike/master' into dev
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 a754d3504..c94f5c657 100644
--- a/include/channel.php
+++ b/include/channel.php
@@ -1234,7 +1234,7 @@ function profile_load($nickname, $profile = '') {
);
if($z) {
$p[0]['picdate'] = $z[0]['xchan_photo_date'];
- $p[0]['reddress'] = str_replace('@','&#x40;',$z[0]['xchan_addr']);
+ $p[0]['reddress'] = str_replace('@','&#x40;',unpunify($z[0]['xchan_addr']));
}
// fetch user tags if this isn't the default profile
@@ -1255,7 +1255,7 @@ function profile_load($nickname, $profile = '') {
App::$profile = $p[0];
App::$profile_uid = $p[0]['profile_uid'];
- App::$page['title'] = App::$profile['channel_name'] . " - " . channel_reddress(App::$profile);
+ App::$page['title'] = App::$profile['channel_name'] . " - " . unpunify(channel_reddress(App::$profile));
App::$profile['permission_to_view'] = $can_view_profile;