[freeside-commits] branch FREESIDE_4_BRANCH updated. 052e86e84f36bc9a0c0f06ba77bafa2aca10afdb
Christopher Burger
burgerc at 420.am
Tue Aug 29 04:59:22 PDT 2017
The branch, FREESIDE_4_BRANCH has been updated
via 052e86e84f36bc9a0c0f06ba77bafa2aca10afdb (commit)
from aa0e7222dae7df139688480534cb3cd10c84e227 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 052e86e84f36bc9a0c0f06ba77bafa2aca10afdb
Author: Christopher Burger <burgerc at freeside.biz>
Date: Tue Aug 22 13:05:37 2017 -0400
RT# 77021 - fixed advanced report criteria so agent and other fileds with a . in them now work.
diff --git a/rt/share/html/Search/Build.html b/rt/share/html/Search/Build.html
index 3065192..cffcbf4 100644
--- a/rt/share/html/Search/Build.html
+++ b/rt/share/html/Search/Build.html
@@ -67,7 +67,6 @@
%#
<& /Elements/Header, Title => $title &>
<& /Elements/Tabs, %TabArgs &>
-
<form method="post" action="Build.html" name="BuildQuery" id="BuildQuery">
<input type="hidden" class="hidden" name="SavedSearchId" value="<% $saved_search{'Id'} %>" />
<input type="hidden" class="hidden" name="SavedChartSearchId" value="<% $ARGS{'SavedChartSearchId'} %>" />
@@ -200,7 +199,7 @@ my $cf_field_names =
# Try to find if we're adding a clause
foreach my $arg ( keys %ARGS ) {
- next unless $arg =~ m/^ValueOf(\w+|($cf_field_names).\{.*?\})$/
+ next unless $arg =~ m/^ValueOf([\w\.]+|($cf_field_names).\{.*?\})$/
&& ( ref $ARGS{$arg} eq "ARRAY"
? grep $_ ne '', @{ $ARGS{$arg} }
: $ARGS{$arg} ne '' );
-----------------------------------------------------------------------
Summary of changes:
rt/share/html/Search/Build.html | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
More information about the freeside-commits
mailing list