diff options
author | Byron Jones <bjones@mozilla.com> | 2011-12-05 17:47:23 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2011-12-05 17:47:23 +0100 |
commit | af86419d74b0050ea590dede8da6587c75a67f16 (patch) | |
tree | 74bce4711f42b85ba58a5298cdbec058216bbee8 | |
parent | 302ad431b524e3a3e42ce2cfd80744b0007e202d (diff) | |
download | bugzilla-af86419d74b0050ea590dede8da6587c75a67f16.tar.gz bugzilla-af86419d74b0050ea590dede8da6587c75a67f16.tar.xz |
Bug 707594: Fix broken account lockout notifications
-rw-r--r-- | Bugzilla/Auth.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Auth.pm b/Bugzilla/Auth.pm index 9ee5ec7fa..45034e166 100644 --- a/Bugzilla/Auth.pm +++ b/Bugzilla/Auth.pm @@ -213,7 +213,8 @@ sub _handle_login_result { # account, but just an email address. So we use the # installation's default language for sending the email. my $default_settings = Bugzilla::User::Setting::get_defaults(); - my $template = Bugzilla->template_inner($default_settings->{lang}); + my $template = Bugzilla->template_inner( + $default_settings->{lang}->{default_value}); my $vars = { locked_user => $user, attempts => $attempts, |