diff options
author | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
commit | c82d349f864e6bd9f96fd1156903bc1f7193a203 (patch) | |
tree | e117a87533656110b6acd56fc0ca64289892a9f5 /fs_selfservice/FS-SelfService/cgi/tktview.html | |
parent | 74e058c8a010ef6feb539248a550d0bb169c1e94 (diff) |
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/tktview.html')
-rw-r--r-- | fs_selfservice/FS-SelfService/cgi/tktview.html | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/tktview.html b/fs_selfservice/FS-SelfService/cgi/tktview.html deleted file mode 100644 index 6f540bcf4..000000000 --- a/fs_selfservice/FS-SelfService/cgi/tktview.html +++ /dev/null @@ -1,31 +0,0 @@ -<%= $url = "$selfurl?session=$session_id;action="; ''; %> -<%= include('header', "View ticket #$ticket_id") %> - -<%= -if($error) { - $OUT .= qq! <div style="font-weight: bold; color: red; font-size: 110%">Error: $error</div> !; -} -elsif(@transactions) { - $OUT .= qq! <TABLE border="1">!; - foreach my $txn ( @transactions ) { - next if $txn->{content} eq 'This transaction appears to have no content'; - $OUT .= "<TR><TD><B>$txn->{created} $txn->{description}</B>"; - $OUT .= "<PRE>$txn->{content}</PRE></TD></TR>"; - } - $OUT .= "</TABLE>"; -} -else { - $OUT .= "No transactions on this ticket"; -} -%> -<BR><BR><BR> -<FORM ACTION="<%=$selfurl%>" METHOD=POST> - <input type="hidden" name="session" value="<%=$session_id%>"> - <input type="hidden" name="ticket_id" value="<%=$ticket_id%>"> - <input type="hidden" name="action" value="tktview"> - Add reply to ticket: - <BR><textarea name="reply" cols="60" rows="10"></textarea> - <BR><input type="submit" value="Reply"> -</form> - -<%= include('footer') %> |