Follow-up Commit:f70569ddb5b109bdc18fce033bf38bf00247871d

* Fix incorrect parameter in sprintf(). Spotted by Giftpflanze.
This commit is contained in:
Siebrand Mazeland 2011-04-24 20:30:58 +02:00
parent 69e1bd3a58
commit 9300803e88
1 changed files with 1 additions and 1 deletions

View 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>");