From 1459110124c012364800484cd3677f754917de63 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 20 Oct 2010 11:16:21 +0200 Subject: [PATCH] Fix nasty bug in parameter for e-mail notification for favourite. --- lib/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mail.php b/lib/mail.php index 3703e5c35d..30d743848f 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -600,7 +600,7 @@ function mail_notify_fave($other, $user, $notice) // TRANS: Subject for favorite notification e-mail. // TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. - $subject = sprintf(_('%1s$ (@%2$s) added your notice as a favorite'), $bestname, $user->nickname); + $subject = sprintf(_('%1$s (@%2$s) added your notice as a favorite'), $bestname, $user->nickname); // TRANS: Body for favorite notification e-mail. // TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created, -- 2.39.5