diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-10-08 21:40:48 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-10-08 21:40:48 -0700 |
commit | 7f2c31cd55d1f5c49db10e997b9e4756e4f46279 (patch) | |
tree | a8c95eeb32fc5cf4f9b4271da1570d7d36f9858b | |
parent | 705de04c6659330be111fbbd5149ae5587402196 (diff) |
init applied_time
-rw-r--r-- | httemplate/search/rt_transaction.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/search/rt_transaction.html b/httemplate/search/rt_transaction.html index eb250fb27..c9a305f03 100644 --- a/httemplate/search/rt_transaction.html +++ b/httemplate/search/rt_transaction.html @@ -56,7 +56,8 @@ my @select = ( ); my @select_total = ( 'COUNT(*)' ); -my ($transaction_time, $applied_time); +my $transaction_time; +my $applied_time = ''; my $join = 'JOIN Tickets ON Transactions.ObjectId = Tickets.Id '. 'JOIN Users ON Transactions.Creator = Users.Id '; #. |