[Rt-commit] r13222 - in rt/branches/3.8-TESTING: share/html/Elements
elacour at bestpractical.com
elacour at bestpractical.com
Thu Jun 12 14:54:15 EDT 2008
Author: elacour
Date: Thu Jun 12 14:54:15 2008
New Revision: 13222
Modified:
rt/branches/3.8-TESTING/ (props changed)
rt/branches/3.8-TESTING/share/html/Elements/MyReminders
Log:
r9471 at datura: manu | 2008-06-12 20:53:24 +0200
RT-Ticket: 8138
RT-Update: correspond
RT-Status: resolved
Removed unneeded filter on Due date for displaying reminders without one on RT
at a glance.
Modified: rt/branches/3.8-TESTING/share/html/Elements/MyReminders
==============================================================================
--- rt/branches/3.8-TESTING/share/html/Elements/MyReminders (original)
+++ rt/branches/3.8-TESTING/share/html/Elements/MyReminders Thu Jun 12 14:54:15 2008
@@ -69,6 +69,6 @@
return unless RT->Config->Get('EnableReminders');
my $reminders = RT::Tickets->new($session{'CurrentUser'});
$reminders->FromSQL('(Owner = "Nobody" OR Owner = "'.$session{'CurrentUser'}->Name.'")' .
- ' AND Type = "reminder" AND (Status = "new" OR Status = "open") AND Due > "1970-01-01"');
+ ' AND Type = "reminder" AND (Status = "new" OR Status = "open")');
$reminders->OrderBy(FIELD => 'Due', ORDER => 'DESC');
</%init>
More information about the Rt-commit
mailing list