[freeside-commits] branch FREESIDE_3_BRANCH updated. 9075f8df5c274446dc42dd499413269effa183d5
Jonathan Prykop
jonathan at 420.am
Thu Feb 25 11:08:51 PST 2016
The branch, FREESIDE_3_BRANCH has been updated
via 9075f8df5c274446dc42dd499413269effa183d5 (commit)
from 5c98d3c21d07442fcf6d5a21aaef3e1fd5a206ca (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 9075f8df5c274446dc42dd499413269effa183d5
Author: Jonathan Prykop <jonathan at freeside.biz>
Date: Thu Feb 25 12:56:28 2016 -0600
RT#38597: OQM - svc Circuit use and setup [fixed case handling]
diff --git a/FS/FS/svc_circuit.pm b/FS/FS/svc_circuit.pm
index 8ec0dad..0d42bd9 100644
--- a/FS/FS/svc_circuit.pm
+++ b/FS/FS/svc_circuit.pm
@@ -221,9 +221,9 @@ sub label {
sub search_sql {
my ($class, $string) = @_;
my @where = ();
- push @where, 'LOWER(svc_circuit.circuit_id) = ' . dbh->quote($string);
- push @where, 'LOWER(circuit_provider.provider) = ' . dbh->quote($string);
- push @where, 'LOWER(circuit_type.typename) = ' . dbh->quote($string);
+ push @where, 'LOWER(svc_circuit.circuit_id) = LOWER(' . dbh->quote($string) . ')';
+ push @where, 'LOWER(circuit_provider.provider) = LOWER(' . dbh->quote($string) . ')';
+ push @where, 'LOWER(circuit_type.typename) = LOWER(' . dbh->quote($string) . ')';
'(' . join(' OR ', @where) . ')';
}
-----------------------------------------------------------------------
Summary of changes:
FS/FS/svc_circuit.pm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
More information about the freeside-commits
mailing list