From c7b80b532aa6d20e091bc65c3dd679a951f6d566 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 25 Sep 2015 17:47:37 +0200 Subject: [PATCH] Bugfix: The "about" field in the introductions should be send through bbcode --- mod/notifications.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mod/notifications.php b/mod/notifications.php index 82e13b1be5..44f6dd5675 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -1,4 +1,5 @@ $_SESSION['uid'], '$intro_id' => $rr['intro_id'], '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/person-175.jpg"), + '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), '$fullname' => $rr['name'], '$location_label' => t('Location:'), '$location' => $rr['glocation'], '$location_label' => t('Location:'), - '$about' => $rr['gabout'], + '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), '$about_label' => t('About:'), '$keywords' => $rr['gkeywords'], '$keywords_label' => t('Tags:'),