aboutsummaryrefslogtreecommitdiffstats
path: root/include/enotify.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-06-13 20:03:18 -0700
committerfriendica <info@friendica.com>2012-06-13 20:03:18 -0700
commitb0a0c1ef4da159293236253e16eb0ba46a590d21 (patch)
tree3ebf7514613ae93a53e1a0788fed61e501c0d882 /include/enotify.php
parent7d8b087f4a90dfa8b69bb7660cf68a2b021a31a2 (diff)
downloadvolse-hubzilla-b0a0c1ef4da159293236253e16eb0ba46a590d21.tar.gz
volse-hubzilla-b0a0c1ef4da159293236253e16eb0ba46a590d21.tar.bz2
volse-hubzilla-b0a0c1ef4da159293236253e16eb0ba46a590d21.zip
couple of little fixes to enotify positional params
Diffstat (limited to 'include/enotify.php')
-rw-r--r--include/enotify.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/enotify.php b/include/enotify.php
index aba2f8516..81f3e11eb 100644
--- a/include/enotify.php
+++ b/include/enotify.php
@@ -95,7 +95,7 @@ function notification($params) {
// Before this we have the name of the replier on the subject rendering
// differents subjects for messages on the same thread.
- $subject = sprintf( t('[Friendica:Notify] Comment to conversation #%1$d by %1$s'), $parent_id, $params['source_name']);
+ $subject = sprintf( t('[Friendica:Notify] Comment to conversation #%1$d by %2$s'), $parent_id, $params['source_name']);
$preamble = sprintf( t('%s commented on an item/conversation you have been following.'), $params['source_name']);
$epreamble = $dest_str;
@@ -108,7 +108,7 @@ function notification($params) {
if($params['type'] == NOTIFY_WALL) {
$subject = sprintf( t('[Friendica:Notify] %s posted to your profile wall') , $params['source_name']);
- $preamble = sprintf( t('%1$s posted to your profile wall at %1$s') , $params['source_name'], $sitename);
+ $preamble = sprintf( t('%1$s posted to your profile wall at %2$s') , $params['source_name'], $sitename);
$epreamble = sprintf( t('%1$s posted to [url=%2s]your wall[/url]') ,
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',