summaryrefslogtreecommitdiff
path: root/fs_selfservice/FS-SelfService/cgi/myaccount.html
diff options
context:
space:
mode:
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/myaccount.html')
-rw-r--r--fs_selfservice/FS-SelfService/cgi/myaccount.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/myaccount.html b/fs_selfservice/FS-SelfService/cgi/myaccount.html
index eaf4164bf..a57bfb14a 100644
--- a/fs_selfservice/FS-SelfService/cgi/myaccount.html
+++ b/fs_selfservice/FS-SelfService/cgi/myaccount.html
@@ -85,9 +85,9 @@ Hello <%= $name %>!<BR><BR>
<%=
if ( @tickets ) {
$OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'.
- '<TR><TH BGCOLOR="#ff6666" COLSPAN=5>Open Tickets</TH></TR>'.
+ '<TR><TH BGCOLOR="#ff6666" COLSPAN=6>Open Tickets</TH></TR>'.
'<TR><TH>#</TH><TH>Subject</TH><TH>Priority</TH><TH>Queue</TH>'.
- '<TH>Status</TH></TR>';
+ '<TH>Status</TH><TH>Created</TH></TR>';
my $col1 = "ffffff";
my $col2 = "dddddd";
my $col = $col1;
@@ -101,6 +101,7 @@ Hello <%= $name %>!<BR><BR>
$td. ($ticket->{'content'} || $ticket->{'priority'}). "</TD>".
$td. $ticket->{'queue'}. "</TD>".
$td. $ticket->{'status'}. "</TD>".
+ $td. $ticket->{'created'}. "</TD>".
'</TR>';
$col = $col eq $col1 ? $col2 : $col1;
}