X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FReminders.pm;h=e3222e35c8f3e20c3567e3fe2f2530fc4674b673;hb=b0cea1070026b23dedb0e3638bd958d773c3d4b4;hp=d2ea9ccc0f8a0b275a817b69ca33eb3a0d2f4166;hpb=40a7b3dc653e099f7bd0bd762b649b04c4432db2;p=freeside.git diff --git a/rt/lib/RT/Reminders.pm b/rt/lib/RT/Reminders.pm index d2ea9ccc0..e3222e35c 100644 --- a/rt/lib/RT/Reminders.pm +++ b/rt/lib/RT/Reminders.pm @@ -1,8 +1,8 @@ # BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: -# -# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC +# +# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) @@ -45,6 +45,7 @@ # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} + package RT::Reminders; use base qw/RT::Base/; @@ -87,10 +88,11 @@ sub Collection { my $self = shift; my $col = RT::Tickets->new($self->CurrentUser); - my $query = 'Queue = "'. $self->TicketObj->QueueObj->Name .'" AND Type = "reminder"'; - $query .= ' AND RefersTo = "'.$self->Ticket.'"'; + my $query = 'Type = "reminder" AND RefersTo = "'.$self->Ticket.'"'; $col->FromSQL($query); + + $col->OrderBy( FIELD => 'Due' ); return($col); }