fixed bugs in post nuke, base.jsp display (simplified it), and global

audit record display
This commit is contained in:
Eric J. Bowersox
2001-04-11 05:42:12 +00:00
parent 63fedc9db6
commit 7e226040d4
5 changed files with 113 additions and 85 deletions

View File

@@ -64,6 +64,8 @@ public class AuditRecord implements AuditData
String getUserName(int uid) throws SQLException, DataException
{
if (uid==0)
return ""; // UID 0 = no user
Integer uid_x = new Integer(uid);
String rc = (String)(uname_cache.get(uid_x));
if (rc==null)