[Rt-commit] [rtir] 24/24: A few more lifecyclifications.
Jesse Vincent
jesse at bestpractical.com
Mon Feb 9 00:25:27 EST 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 e3c796ce71c3a20e6262fca39940fbaedc98f8ba
Author: Jesse Vincent <jesse at bestpractical.com>
Date: Sun Feb 8 21:24:48 2015 -0800
A few more lifecyclifications.
---
html/RTIR/Incident/Reply/Refine.html | 8 ++++----
html/RTIR/Merge/Refine.html | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/html/RTIR/Incident/Reply/Refine.html b/html/RTIR/Incident/Reply/Refine.html
index 4e9f515..554f130 100644
--- a/html/RTIR/Incident/Reply/Refine.html
+++ b/html/RTIR/Incident/Reply/Refine.html
@@ -46,9 +46,9 @@
%#
%# END BPS TAGGED BLOCK }}}
<%INIT>
-my @queues = ('Incident Reports');
-push @queues, 'Investigations' if $ARGS{'All'};
-push @queues, 'Blocks' if $ARGS{'All'} && !RT->Config->Get('RTIR_DisableBlocksQueue');
+my @lifecycles = ('incident_reports');
+push @lifecycles, 'investigations' if $ARGS{'All'};
+push @lifecycles, 'blocks' if $ARGS{'All'} && !RT->Config->Get('RTIR_DisableBlocksQueue');
return $m->comp(
'/RTIR/Search/Elements/RefinePage',
@@ -61,7 +61,7 @@ return $m->comp(
SelectedBlocksAll => $ARGS{'SelectedBlocksAll'},
),
BaseQuery => RT::IR->Query(
- Queue => \@queues,
+ Lifecycle => \@lifecycles,
MemberOf => $ARGS{'id'},
),
ExtraQueryParams => [qw(SelectedReportsAll SelectedInvestigationsAll
diff --git a/html/RTIR/Merge/Refine.html b/html/RTIR/Merge/Refine.html
index afb92e0..271c936 100644
--- a/html/RTIR/Merge/Refine.html
+++ b/html/RTIR/Merge/Refine.html
@@ -53,7 +53,7 @@ return $m->comp(
id => $ARGS{'id'},
),
BaseQuery => RT::IR->Query(
- Queue => $ARGS{'Queue'},
+ Lifecycle => $ARGS{'Lifecycle'},
Exclude => $ARGS{'id'},
),
);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the rt-commit
mailing list