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

(-)a/C4/SQLHelper.pm (-3 / +2 lines)
Lines 487-494 sub _Process_Operands{ Link Here
487
		}
487
		}
488
		if ($searchtype eq "start_with"){
488
		if ($searchtype eq "start_with"){
489
            foreach (@$operand) {
489
            foreach (@$operand) {
490
			    push @tmpkeys,("$field LIKE ?","$field LIKE ?");
490
                push @tmpkeys,("$field LIKE ?","$field LIKE ?");
491
			    push @localvaluesextended, ("$_\%", " $_\%") ;
491
                push @localvaluesextended, ("$operand\%", "\% $operand\%") ;
492
            }
492
            }
493
		}
493
		}
494
		push @values,@localvaluesextended;
494
		push @values,@localvaluesextended;
495
- 

Return to bug 7053