[Rt-commit] r2715 - in rt/branches/PLATANO-EXPERIMENTAL-CSS: .
html/Search/Elements
jesse at bestpractical.com
jesse at bestpractical.com
Sat Apr 16 04:18:05 EDT 2005
Author: jesse
Date: Sat Apr 16 04:18:05 2005
New Revision: 2715
Modified:
rt/branches/PLATANO-EXPERIMENTAL-CSS/ (props changed)
rt/branches/PLATANO-EXPERIMENTAL-CSS/html/Search/Elements/DisplayOptions
Log:
r13104 at hualien: jesse | 2005-04-16 03:12:07 -0400
r13003 at hualien: jesse | 2005-04-16 02:26:51 -0400
r11941 at hualien: jesse | 2005-04-06 15:26:40 -0400
* Search "Order By" needed a more greedy matching operation; too many values were selected
Modified: rt/branches/PLATANO-EXPERIMENTAL-CSS/html/Search/Elements/DisplayOptions
==============================================================================
--- rt/branches/PLATANO-EXPERIMENTAL-CSS/html/Search/Elements/DisplayOptions (original)
+++ rt/branches/PLATANO-EXPERIMENTAL-CSS/html/Search/Elements/DisplayOptions Sat Apr 16 04:18:05 2005
@@ -59,7 +59,7 @@
% foreach my $field (keys %fields) {
% next unless $field;
<option value=<%$field%>
-% if ($field =~ /$OrderBy/i) {
+% if ($field =~ /^$OrderBy$/i) {
SELECTED
% }
><%$field%></option>
More information about the Rt-commit
mailing list