summaryrefslogtreecommitdiff
path: root/rt/lib/RT/Queues_Overlay.pm
diff options
context:
space:
mode:
Diffstat (limited to 'rt/lib/RT/Queues_Overlay.pm')
-rw-r--r--rt/lib/RT/Queues_Overlay.pm25
1 files changed, 1 insertions, 24 deletions
diff --git a/rt/lib/RT/Queues_Overlay.pm b/rt/lib/RT/Queues_Overlay.pm
index 9338b218b..78307c44f 100644
--- a/rt/lib/RT/Queues_Overlay.pm
+++ b/rt/lib/RT/Queues_Overlay.pm
@@ -74,6 +74,7 @@ sub _Init {
my $self = shift;
$self->{'table'} = "Queues";
$self->{'primary_key'} = "id";
+ $self->{'with_disabled_column'} = 1;
# By default, order by name
$self->OrderBy( ALIAS => 'main',
@@ -84,30 +85,6 @@ sub _Init {
}
# }}}
-# {{{ sub _DoSearch
-
-=head2 _DoSearch
-
- A subclass of DBIx::SearchBuilder::_DoSearch that makes sure that _Disabled rows never get seen unless
-we're explicitly trying to see them.
-
-=cut
-
-sub _DoSearch {
- my $self = shift;
-
- #unless we really want to find disabled rows, make sure we\'re only finding enabled ones.
- unless($self->{'find_disabled_rows'}) {
- $self->LimitToEnabled();
- }
-
- return($self->SUPER::_DoSearch(@_));
-
-}
-
-# }}}
-
-
# {{{ sub Limit
sub Limit {
my $self = shift;