From 83ea4f72538bb4cd2e79979307744933010a2082 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 15:55:24 +0200 Subject: [PATCH] transfer some stuff from "follow" to the "notifications" to reduce the differences in the two dialogues. --- mod/follow.php | 4 ++-- mod/notifications.php | 3 ++- view/templates/intros.tpl | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/mod/follow.php b/mod/follow.php index b635b3493b..7b1957c93b 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -99,9 +99,9 @@ function follow_content(&$a) { '$request' => $request, '$location' => bbcode($r[0]["location"]), '$location_label' => t("Location:"), - '$about' => bbcode($r[0]["about"]), + '$about' => proxy_parse_html(bbcode($r[0]["about"], false, false)), '$about_label' => t("About:"), - '$keywords' => bbcode($r[0]["keywords"]), + '$keywords' => $r[0]["keywords"], '$keywords_label' => t("Tags:") )); return $o; diff --git a/mod/notifications.php b/mod/notifications.php index 1fc31c3eb9..831beee765 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -216,7 +216,7 @@ function notifications_content(&$a) { '$contact_id' => $rr['contact-id'], '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), '$fullname' => $rr['name'], - '$location' => $rr['glocation'], + '$location' => bbcode($rr['glocation'], false, false), '$location_label' => t('Location:'), '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), '$about_label' => t('About:'), @@ -227,6 +227,7 @@ function notifications_content(&$a) { '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), '$url' => zrl($rr['url']), + '$url_label' => t('Profile URL'), '$knowyou' => $knowyou, '$approve' => t('Approve'), '$note' => $rr['note'], diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index aa10cde48f..d50b14cd41 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -5,6 +5,7 @@

{{$str_notifytype}} {{$notify_type}}

{{$fullname}}
{{$fullname|escape:'html'}} +
{{$url_label}}
{{$url}}
{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $gender}}
{{$gender_label}}
{{$gender}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}}