Fix HTML table generation for Active Sessions. Fixes bug #11832
This commit is contained in:
parent
f65ae74e54
commit
055b72de7f
2 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
template variables TT would understand to HTML::Template templates -- see
|
template variables TT would understand to HTML::Template templates -- see
|
||||||
WebGUI::Asset::Template::Parser->downgrade for details.
|
WebGUI::Asset::Template::Parser->downgrade for details.
|
||||||
- fixed #11813: Payment confirmation screen dollar amount
|
- fixed #11813: Payment confirmation screen dollar amount
|
||||||
|
- fixed #11832: Admin Session Interface broken
|
||||||
|
|
||||||
7.9.13
|
7.9.13
|
||||||
- fixed #11783: Instances deleted during realtime run
|
- fixed #11783: Instances deleted during realtime run
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ sub www_viewActiveSessions {
|
||||||
and users.userId<>1 order by users.username,userSession.lastPageView desc");
|
and users.userId<>1 order by users.username,userSession.lastPageView desc");
|
||||||
my $pn = $p->getPageNumber;
|
my $pn = $p->getPageNumber;
|
||||||
foreach my $data (@{ $p->getPageData() }) {
|
foreach my $data (@{ $p->getPageData() }) {
|
||||||
$output = '<tr class="tableData"><td>'.$data->{username}.' ('.$data->{userId}.')</td>';
|
$output .= '<tr class="tableData"><td>'.$data->{username}.' ('.$data->{userId}.')</td>';
|
||||||
$output .= '<td>'.$data->{sessionId}.'</td>';
|
$output .= '<td>'.$data->{sessionId}.'</td>';
|
||||||
$output .= '<td>'.$session->datetime->epochToHuman($data->{expires}).'</td>';
|
$output .= '<td>'.$session->datetime->epochToHuman($data->{expires}).'</td>';
|
||||||
$output .= '<td>'.$session->datetime->epochToHuman($data->{lastPageView}).'</td>';
|
$output .= '<td>'.$session->datetime->epochToHuman($data->{lastPageView}).'</td>';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue