summaryrefslogtreecommitdiff
path: root/rt
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-06-11 12:23:54 -0700
committerMark Wells <mark@freeside.biz>2016-06-11 12:23:54 -0700
commit603701ab0bbee8dd44b1a27cd7f527e8e8be8c6e (patch)
treed5a1c59c23310373929954b8f6dccb79ccc95d97 /rt
parentae18bbb97428747825148a4fbeb95f2ed3ab67ea (diff)
hide unreplied status for Rejected tickets, #41670
Diffstat (limited to 'rt')
-rw-r--r--rt/lib/RT/Search/UnrepliedTickets.pm11
1 files changed, 8 insertions, 3 deletions
diff --git a/rt/lib/RT/Search/UnrepliedTickets.pm b/rt/lib/RT/Search/UnrepliedTickets.pm
index a99690156..4bb59d9e3 100644
--- a/rt/lib/RT/Search/UnrepliedTickets.pm
+++ b/rt/lib/RT/Search/UnrepliedTickets.pm
@@ -6,9 +6,9 @@
=head1 DESCRIPTION
-Find all unresolved tickets owned by the current user where the last correspondence
-from a requestor (or ticket creation) is more recent than the last
-correspondence from a non-requestor (if there is any).
+Find all unresolved tickets owned by the current user where the last
+correspondence from a requestor (or ticket creation) is more recent than the
+last correspondence from a non-requestor (if there is any).
=head1 METHODS
@@ -39,6 +39,11 @@ sub Prepare {
OPERATOR => '!=',
VALUE => 'resolved'
);
+ $TicketsObj->Limit(
+ FIELD => 'Status',
+ OPERATOR => '!=',
+ VALUE => 'rejected',
+ );
my $txn_alias = $TicketsObj->JoinTransactions;
$TicketsObj->Limit(
ALIAS => $txn_alias,