From 4934eebb703e39181d3fffdd6ffb5b519d481fbe Mon Sep 17 00:00:00 2001 From: Frank Dillon Date: Tue, 9 Mar 2004 22:25:52 +0000 Subject: [PATCH] Fixed bug on 372 not allowing users to update passwords. --- lib/WebGUI/Auth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Auth.pm b/lib/WebGUI/Auth.pm index eff34b7ed..c1406293b 100644 --- a/lib/WebGUI/Auth.pm +++ b/lib/WebGUI/Auth.pm @@ -369,7 +369,7 @@ sub displayAccount { $vars->{title} = WebGUI::International::get(61); $vars->{'account.form.header'} = WebGUI::Form::formHeader({}); - $vars->{'account.form.header'} = WebGUI::Form::hidden({"name"=>"op","value"=>"auth"}); + $vars->{'account.form.header'} .= WebGUI::Form::hidden({"name"=>"op","value"=>"auth"}); $vars->{'account.form.header'} .= WebGUI::Form::hidden({"name"=>"method","value"=>$method}); if($session{setting}{useKarma}){ $vars->{'account.form.karma'} = $session{user}{karma};