diff options
author | Brion Vibber <brion@pobox.com> | 2010-05-25 11:36:42 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-05-25 11:36:42 -0700 |
commit | f98609204fb9b5966b9e4c9e4bf8bf605656c31c (patch) | |
tree | 8cc16bb846e31670ce64adb3574f67c54818dc16 /plugins/Facebook | |
parent | 09dab2ce5ae819c73d7984822d418c43f1fba223 (diff) |
Backing out locale switch change to see if this affects our mystery memory leak.
Revert "Locale switch cleanup: use common_switch_locale() which is safer for updating gettext state. Also moved a few calls to reduce chance of hitting an exception before switching back."
This reverts commit 74a89b1fc37067d91d31bd66922053361eb4e616.
Diffstat (limited to 'plugins/Facebook')
-rw-r--r-- | plugins/Facebook/facebookutil.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Facebook/facebookutil.php b/plugins/Facebook/facebookutil.php index c7b0f02c3..9c35276b7 100644 --- a/plugins/Facebook/facebookutil.php +++ b/plugins/Facebook/facebookutil.php @@ -461,12 +461,12 @@ function remove_facebook_app($flink) function mail_facebook_app_removed($user) { + common_init_locale($user->language); + $profile = $user->getProfile(); $site_name = common_config('site', 'name'); - common_switch_locale($user->language); - $subject = sprintf( _m('Your %1$s Facebook application access has been disabled.', $site_name)); @@ -480,7 +480,7 @@ function mail_facebook_app_removed($user) "re-installing the %2\$s Facebook application.\n\nRegards,\n\n%2\$s"), $user->nickname, $site_name); - common_switch_locale(); + common_init_locale(); return mail_to_user($user, $subject, $body); } |