summaryrefslogtreecommitdiffstats
path: root/Bugzilla/MFA/Dummy.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/MFA/Dummy.pm')
-rw-r--r--Bugzilla/MFA/Dummy.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/Bugzilla/MFA/Dummy.pm b/Bugzilla/MFA/Dummy.pm
index 03fbe76b5..0ba7a79a6 100644
--- a/Bugzilla/MFA/Dummy.pm
+++ b/Bugzilla/MFA/Dummy.pm
@@ -18,12 +18,12 @@ use base 'Bugzilla::MFA';
# it provides no 2fa protection at all, but prevents crashing.
sub prompt {
- my ($self, $vars) = @_;
- my $template = Bugzilla->template;
+ my ($self, $vars) = @_;
+ my $template = Bugzilla->template;
- print Bugzilla->cgi->header();
- $template->process('mfa/dummy/verify.html.tmpl', $vars)
- || ThrowTemplateError($template->error());
+ print Bugzilla->cgi->header();
+ $template->process('mfa/dummy/verify.html.tmpl', $vars)
+ || ThrowTemplateError($template->error());
}
1;