]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Follow-up Commit:f70569ddb5b109bdc18fce033bf38bf00247871d
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 24 Apr 2011 18:30:58 +0000 (20:30 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 24 Apr 2011 18:30:58 +0000 (20:30 +0200)
* Fix incorrect parameter in sprintf(). Spotted by Giftpflanze.

plugins/EmailSummary/useremailsummaryhandler.php

index dca1be24bc6d5a60ef8ae7b3cb320575f538f824..e2a7700f9e46bccc1affefd8b130dc3cb804bc4c 100644 (file)
@@ -194,7 +194,7 @@ class UserEmailSummaryHandler extends QueueHandler
 
         // TRANS: Link text for link to e-mail settings.
         // TRANS: %1$s is a link to the e-mail settings, %2$s is the StatusNet sitename.
-        $out->raw("<p>" . sprintf(_m('<a href="%1s">change your email settings for %2$s</a>'),
+        $out->raw("<p>" . sprintf(_m('<a href="%1$s">change your email settings for %2$s</a>'),
                           common_local_url('emailsettings'),
                           common_config('site', 'name'))."</p>");