summaryrefslogtreecommitdiff
path: root/lib/mail.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-07-27 02:54:51 +0000
committerZach Copley <zach@controlyourself.ca>2009-07-27 02:54:51 +0000
commitb9cf19a2ee4b483709f1e964860fcf9209c4ba05 (patch)
tree17c4833e227976ac816ff1bfda3ee560ba57d9e5 /lib/mail.php
parent3077876b1706222385182cb2647f9f5a99d6dffd (diff)
Better error handling when updating Facebook
Diffstat (limited to 'lib/mail.php')
-rw-r--r--lib/mail.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/mail.php b/lib/mail.php
index 262f788ee..0050ad810 100644
--- a/lib/mail.php
+++ b/lib/mail.php
@@ -679,17 +679,17 @@ function mail_facebook_app_removed($user)
$site_name = common_config('site', 'name');
$subject = sprintf(
- _('Your %s Facebook application access has been disabled.',
+ _('Your %1\$s Facebook application access has been disabled.',
$site_name));
$body = sprintf(_("Hi, %1\$s. We're sorry to inform you that we are " .
- 'unable to update your Facebook status from %s, and have disabled ' .
+ 'unable to update your Facebook status from %2\$s, and have disabled ' .
'the Facebook application for your account. This may be because ' .
'you have removed the Facebook application\'s authorization, or ' .
'have deleted your Facebook account. You can re-enable the ' .
'Facebook application and automatic status updating by ' .
- "re-installing the %1\$s Facebook application.\n\nRegards,\n\n%1\$s"),
- $site_name);
+ "re-installing the %2\$s Facebook application.\n\nRegards,\n\n%2\$s"),
+ $user->nickname, $site_name);
common_init_locale();
return mail_to_user($user, $subject, $body);