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

(-)a/C4/SQLHelper.pm (-2 / +1 lines)
Lines 403-409 sub _Process_Operands{ Link Here
403
		}
403
		}
404
		if ($searchtype eq "start_with"){
404
		if ($searchtype eq "start_with"){
405
			push @tmpkeys,("$field LIKE ?","$field LIKE ?");
405
			push @tmpkeys,("$field LIKE ?","$field LIKE ?");
406
			push @localvaluesextended, ("$operand\%", " $operand\%") ;
406
			push @localvaluesextended, ("$operand\%", "\% $operand\%") ;
407
		}
407
		}
408
		push @values,@localvaluesextended;
408
		push @values,@localvaluesextended;
409
	}
409
	}
410
- 

Return to bug 7053