From e143133ab4f0707e047b0155ac0386d68356488f Mon Sep 17 00:00:00 2001 From: JT Smith Date: Fri, 13 Dec 2002 04:11:50 +0000 Subject: [PATCH] Fixed a bug where you couldn't change your password. --- lib/WebGUI/Authentication/WebGUI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Authentication/WebGUI.pm b/lib/WebGUI/Authentication/WebGUI.pm index 3355ffcc4..c37a920c3 100644 --- a/lib/WebGUI/Authentication/WebGUI.pm +++ b/lib/WebGUI/Authentication/WebGUI.pm @@ -109,7 +109,7 @@ sub userFormSave { #------------------------------------------------------------------- sub userFormValidate { my ($error); - if ($session{form}{'authWebGUI.identifier'} ne $session{form}{identifierConfirm}) { + if ($session{form}{'authWebGUI.identifier'} ne $session{form}{'authWebGUI.identifierConfirm'}) { $error = '
  • '.WebGUI::International::get(3,'Auth/WebGUI'); } if ($session{form}{'authWebGUI.identifier'} eq "") {