fix [ 1118753 ] GUID not displayed in 6.2.9 if it begins with "-".
This commit is contained in:
parent
38c4573030
commit
4dd121e634
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue