Fix username's in the Edit User screen. Fixes bug # 11950

This commit is contained in:
Colin Kuskie 2010-11-08 08:07:11 -08:00
parent 1de231b7d7
commit 5c4066413c
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,5 @@
7.10.5
- fixed #11950: Username set to 0 when edit user
7.10.4
- Added WebGUI::Fork api

View file

@ -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;