fix [ 1118753 ] GUID not displayed in 6.2.9 if it begins with "-".

This commit is contained in:
JT Smith 2005-02-10 15:21:41 +00:00
parent 38c4573030
commit 4dd121e634

View file

@ -450,7 +450,7 @@ sub www_listUsers {
$output .= '<td class="tableData">'.epochToHuman($data->{dateCreated},"%z").'</td>';
$output .= '<td class="tableData">'.epochToHuman($data->{lastUpdated},"%z").'</td>';
my ($lastLoginStatus, $lastLogin) = WebGUI::SQL->quickArray("select status,timeStamp from userLoginLog where
userId='$data->{userId}' order by timeStamp DESC");
userId=".quote($data->{userId})." order by timeStamp DESC");
if ($lastLogin) {
$output .= '<td class="tableData">'.epochToHuman($lastLogin).'</td>';
} else {