diff options
Diffstat (limited to 'rt/share/html/Approvals/Elements/Approve')
-rwxr-xr-x | rt/share/html/Approvals/Elements/Approve | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/share/html/Approvals/Elements/Approve b/rt/share/html/Approvals/Elements/Approve index e9a3762bd..6abeb739f 100755 --- a/rt/share/html/Approvals/Elements/Approve +++ b/rt/share/html/Approvals/Elements/Approve @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -58,7 +58,7 @@ <& /Ticket/Elements/ShowCustomFields, Ticket => $approving &> % } % if ($ShowHistory) { - <& /Ticket/Elements/ShowHistory, Ticket => $approving, Collapsed => 0, ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowTitleBarCommands => 0 &> + <& /Elements/ShowHistory, Object => $approving, ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowActions => 0, PathPrefix => RT->Config->Get('WebPath')."/Ticket/" &> % } </div> </div> @@ -106,5 +106,5 @@ $ticket => undef </%ARGS> <%INIT> my $status = $ticket->Status; -my $inactive = $ticket->QueueObj->Lifecycle->IsInactive( $status ); +my $inactive = $ticket->LifecycleObj->IsInactive( $status ); </%INIT> |