Ignore:
Timestamp:
05/11/10 17:33:34 (14 years ago)
Author:
Kris Deugau
Message:

/trunk

Merge miscellaneous microdifferences that have crept in. See #13.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cgi-bin/search.cgi

    r397 r402  
    318318    # Query for a customer ID.  Note that we can't restrict to "numeric-only"
    319319    # as we have non-numeric custIDs in the legacy data.  :/
    320     $sql = "select $cols from searchme where custid ilike '%$query%' or oldcustid ilike '%$query%'";
     320    $sql = "select $cols from searchme where custid ilike '%$query%' or oldcustid ilike '%$query%' or description like '%$query%'";
    321321    my $count = countRows($sql);
    322322    $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset";
     
    500500  return $a[0];
    501501}
    502 
Note: See TracChangeset for help on using the changeset viewer.