The code is in /jreviews/views/helpers/custom_fields.php
# Add search operator fields for date, decimal and integer fields
if($search && in_array($value['type'],$this->operatorTypes))
{
$options = array(
'equal'=>'=',
'higher'=>'>=',
'lower'=>'<='
,'between'=>__t("between",true)
);