[Rt-commit] rt branch, 4.0/fix-selfservice-queues, created. rt-4.0.0rc4-25-ga797a5a
Kevin Falcone
falcone at bestpractical.com
Fri Jan 28 13:30:10 EST 2011
The branch, 4.0/fix-selfservice-queues has been created
at a797a5a6723d377b3c0ba991a88a5751c3143be3 (commit)
- Log -----------------------------------------------------------------
commit a797a5a6723d377b3c0ba991a88a5751c3143be3
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Fri Jan 28 13:18:04 2011 -0500
FindAllRows doesn't
FindAllRows searches for disabled rows and is used quite extensively in
RT, so we can't just "fix" it (it was added in c723178c28)
diff --git a/share/html/Elements/Tabs b/share/html/Elements/Tabs
index ba63a3e..caa0f11 100755
--- a/share/html/Elements/Tabs
+++ b/share/html/Elements/Tabs
@@ -701,7 +701,7 @@ my $build_admin_menu = sub {
my $build_selfservice_nav = sub {
my $queues = RT::Queues->new( $session{'CurrentUser'} );
- $queues->FindAllRows;
+ $queues->UnLimit;
my $queue_count = 0;
my $queue_id = 1;
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list