From 5c4066413ce7c7a257c3006ff5eb693803d43849 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 8 Nov 2010 08:07:11 -0800 Subject: [PATCH] Fix username's in the Edit User screen. Fixes bug # 11950 --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Operation/User.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index e98f728db..157c38459 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.10.5 + - fixed #11950: Username set to 0 when edit user 7.10.4 - Added WebGUI::Fork api diff --git a/lib/WebGUI/Operation/User.pm b/lib/WebGUI/Operation/User.pm index 0278b5f1d..db4bc5c51 100644 --- a/lib/WebGUI/Operation/User.pm +++ b/lib/WebGUI/Operation/User.pm @@ -645,7 +645,7 @@ sub www_editUser { $tabform->getTab("account")->text( -name=>"username", -label=>$i18n->get(50), - -value=>$username + -value=>$username, -extras=>'autocomplete="off"', ); my %status;