From d6caf59f3521f3f65cbcf4cba71a7f0d7ad13178 Mon Sep 17 00:00:00 2001 From: Friendika Date: Fri, 26 Nov 2010 03:47:04 -0800 Subject: [PATCH] verify all the display links in emails --- mod/item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/item.php b/mod/item.php index bd4f4d9afa..504856d7d2 100644 --- a/mod/item.php +++ b/mod/item.php @@ -261,7 +261,7 @@ function item_post(&$a) { '$username' => $user['username'], '$email' => $user['email'], '$from' => $from, - '$display' => $a->get_baseurl() . '/display/' . $post_id, + '$display' => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id, '$body' => strip_tags(bbcode($body)) )); @@ -284,7 +284,7 @@ function item_post(&$a) { '$username' => $user['username'], '$email' => $user['email'], '$from' => $from, - '$display' => $a->get_baseurl() . '/display/' . $post_id, + '$display' => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id, '$body' => strip_tags(bbcode($body)) ));