preparing for the 5.2.3 bugfix cycle and fixed an alias bug

This commit is contained in:
JT Smith 2003-03-30 15:54:59 +00:00
parent c93632d123
commit 587a83d250
4 changed files with 1385 additions and 233 deletions

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,3 @@
insert into webguiVersion values ('5.2.3','upgrade',unix_timestamp());

View file

@ -1,5 +1,5 @@
package WebGUI;
our $VERSION = "5.2.2";
our $VERSION = "5.2.3";
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2003 Plain Black LLC.

View file

@ -154,6 +154,7 @@ sub _setupUserInfo {
}
}
$session{user}{alias} = $session{user}{username} if ($session{user}{alias} =~ /^\W+$/);
$session{user}{alias} = $session{user}{username} if ($session{user}{alias} eq "");
}
}