[Rt-commit] [rtir] 07/07: Fix incorrect uses of RT::IR::TicketType

Jesse Vincent jesse at bestpractical.com
Mon Mar 16 04:38:37 EDT 2015


This is an automated email from the git hooks/post-receive script.

jesse pushed a commit to branch 3.4/remove_old_constituencies
in repository rtir.

commit 7f9ead7808472d79c3e7d04ebb8392f93f8db5bc
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Mon Mar 16 01:38:21 2015 -0700

    Fix incorrect uses of RT::IR::TicketType
---
 html/RTIR/Incident/Children/index.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/html/RTIR/Incident/Children/index.html b/html/RTIR/Incident/Children/index.html
index 1e653eb..ebbad92 100644
--- a/html/RTIR/Incident/Children/index.html
+++ b/html/RTIR/Incident/Children/index.html
@@ -51,9 +51,9 @@
 <& /Elements/ListActions, actions => \@results &>
 
 % if( $children->CountAll == $all_children->CountAll ) {
-<h2><% loc('Total [_1]: [_2]', RT::IR->TicketType(Lifecycle => $Lifecycle), $children->CountAll) %></h2>
+<h2><% loc('Total [_1]: [_2]', RT::IR::TicketType(Lifecycle => $Lifecycle), $children->CountAll) %></h2>
 % } else {
-<h2><% loc('Total [_1]: [_2]([_3])', RT::IR->TicketType(Lifecycle => $Lifecycle), $children->CountAll, $all_children->CountAll) %></h2>
+<h2><% loc('Total [_1]: [_2]([_3])', RT::IR::TicketType(Lifecycle => $Lifecycle), $children->CountAll, $all_children->CountAll) %></h2>
 % }
 
 <form action="index.html" method="post">
@@ -96,7 +96,7 @@ unless ( $Incident->CurrentUserHasRight('ShowTicket') ) {
     Abort("No permission to view ticket");
 }
 
-my $Title = loc("[_1] for Incident #[_2]: [_3]", RT::IR->TicketType(Lifecycle => $Lifecycle),$id, $Incident->Subject);
+my $Title = loc("[_1] for Incident #[_2]: [_3]", RT::IR::TicketType(Lifecycle => $Lifecycle),$id, $Incident->Subject);
 
 my $delete = $Incident->CurrentUserHasRight('ModifyTicket') ? 1: 0;
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the rt-commit mailing list