[freeside-commits] branch master updated. 54874515da35cc39db56c647b992ae8dea17ad21
Jonathan Prykop
jonathan at 420.am
Thu Feb 25 10:56:47 PST 2016
The branch, master has been updated
via 54874515da35cc39db56c647b992ae8dea17ad21 (commit)
from c6aa53fee07cd6f1588dee72b0bb7ad54edb83d9 (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 54874515da35cc39db56c647b992ae8dea17ad21
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 1a42efa..13d8484 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