[rt-users] Two questions about RT 3.2.1

Robert Spier rspier at pobox.com
Tue Aug 17 18:08:22 EDT 2004


> The Updated field in the ticket search page worked fine in RT v3.0.9 (didn't
> try 3.0.10/11).  I was hoping that from 3.0.9 to 3.2 it would still work -
> is this not the case?

In 3.0, "Updated" is syntactic sugar for "TransactionDate"

In 3.2, there is no syntactic sugar, so the UI refers to a field which
doesn't exist.

There are a few options:

Index: html/Elements/SelectDateType
===================================================================
--- html/Elements/SelectDateType        (revision 1338)
+++ html/Elements/SelectDateType        (working copy)
@@ -51,7 +51,7 @@
 <OPTION VALUE="LastUpdated"><&|/l&>Last Updated</&></OPTION>
 <OPTION VALUE="Starts"><&|/l&>Starts</&></OPTION>
 <OPTION VALUE="Due"><&|/l&>Due</&></OPTION>
-<OPTION VALUE="Updated"><&|/l&>Updated</&></OPTION>
+<OPTION VALUE="TransactionDate"><&|/l&>Updated</&></OPTION>
 </SELECT>
 <%ARGS>
 $Name => 'DateType'


that's the simplest.

(untested, but should work, I think.)

Another option is to teach TicketSQL about TransactionDate, which I
don't think is a good idea.

-R



More information about the rt-users mailing list