View | Details | Raw Unified | Return to bug 1807
Collapse All | Expand All

(-)a/C4/Search.pm (-2 / +3 lines)
Lines 1092-1098 sub buildQuery { Link Here
1092
    }
1092
    }
1093
1093
1094
    # Normalize the query and limit strings
1094
    # Normalize the query and limit strings
1095
    $query =~ s/:/=/g;
1095
    # This is flawed , means we can't search anything with : in it
1096
    # if user wants to do ccl or cql, start the query with that
1097
#    $query =~ s/:/=/g;
1096
    $limit =~ s/:/=/g;
1098
    $limit =~ s/:/=/g;
1097
    for ( $query, $query_desc, $limit, $limit_desc ) {
1099
    for ( $query, $query_desc, $limit, $limit_desc ) {
1098
        s/  / /g;    # remove extra spaces
1100
        s/  / /g;    # remove extra spaces
1099
- 

Return to bug 1807