diff options
author | Friendika <info@friendika.com> | 2011-05-27 18:54:43 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-27 18:54:43 -0700 |
commit | 94af6fb06485faa25918c45f5196a1094dcae384 (patch) | |
tree | 8872811c05058d8c8c02c5554bec88d441f3ccfa /mod/dfrn_notify.php | |
parent | 73e0986710f0324a41fb995172d33e7b942dc438 (diff) | |
download | volse-hubzilla-94af6fb06485faa25918c45f5196a1094dcae384.tar.gz volse-hubzilla-94af6fb06485faa25918c45f5196a1094dcae384.tar.bz2 volse-hubzilla-94af6fb06485faa25918c45f5196a1094dcae384.zip |
correct nickname for display link on comment emails
Diffstat (limited to 'mod/dfrn_notify.php')
-rw-r--r-- | mod/dfrn_notify.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 5d6f2c371..12e7ff7ce 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -420,7 +420,7 @@ function dfrn_notify_post(&$a) { '$url' => $datarray['author-link'], // full url for the site '$from' => $from, // name of the person sending the message '$body' => $msg['htmlversion'], // html version of the message - '$display' => $a->get_baseurl() . '/display/' . $importer['nick'] . '/' . $posted_id, + '$display' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id, )); // load the template for private message notifications @@ -433,7 +433,7 @@ function dfrn_notify_post(&$a) { '$url' => $datarray['author-link'], // full url for the site '$from' => $from, // name of the person sending the message '$body' => $msg['textversion'], // text version of the message - '$display' => $a->get_baseurl() . '/display/' . $importer['nick'] . '/' . $posted_id, + '$display' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id, )); // use the EmailNotification library to send the message |