[Rt-commit] r2592 - in rt/branches/3.4-RELEASE: .
html/Search/Elements
jesse at bestpractical.com
jesse at bestpractical.com
Wed Apr 6 15:27:59 EDT 2005
Author: jesse
Date: Wed Apr 6 15:27:58 2005
New Revision: 2592
Modified:
rt/branches/3.4-RELEASE/ (props changed)
rt/branches/3.4-RELEASE/html/Search/Elements/DisplayOptions
Log:
r11940 at hualien: jesse | 2005-04-07 03:23:40 +0800
* Search "Order By" needed a more greedy matching operation; too many values were selected
Modified: rt/branches/3.4-RELEASE/html/Search/Elements/DisplayOptions
==============================================================================
--- rt/branches/3.4-RELEASE/html/Search/Elements/DisplayOptions (original)
+++ rt/branches/3.4-RELEASE/html/Search/Elements/DisplayOptions Wed Apr 6 15:27:58 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