summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-02-25 12:56:28 -0600
committerJonathan Prykop <jonathan@freeside.biz>2016-02-25 12:56:28 -0600
commit54874515da35cc39db56c647b992ae8dea17ad21 (patch)
tree7b1ea815da86229e378730241be9e86912281d5f
parentc6aa53fee07cd6f1588dee72b0bb7ad54edb83d9 (diff)
RT#38597: OQM - svc Circuit use and setup [fixed case handling]
-rw-r--r--FS/FS/svc_circuit.pm6
1 files changed, 3 insertions, 3 deletions
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) . ')';
}