]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix incorrect parameter notation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 9 Apr 2011 23:32:57 +0000 (01:32 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 9 Apr 2011 23:32:57 +0000 (01:32 +0200)
plugins/EmailSummary/useremailsummaryhandler.php

index 2c8c0d9039e1afd6c1d68fb3579c704848e049ed..316e09d5b78dcd67e582c1e775024333a8770f34 100644 (file)
@@ -126,7 +126,7 @@ class UserEmailSummaryHandler extends QueueHandler
         $out->elementStart('div', array('style' => 'color: #ffffff; background-color: #4c609a; font-weight: bold; margin-bottom: 10px; padding: 4px;'));
         // TRANS: Text in e-mail summary.
         // TRANS: %1$s is the StatusNet sitename, %2$s is the recipient's profile name.
-        $out->raw(sprintf(_m('Recent updates from %1$s for %2s:'),
+        $out->raw(sprintf(_m('Recent updates from %1$s for %2$s:'),
                           common_config('site', 'name'),
                           $profile->getBestName()));
         $out->elementEnd('div');