Esempio n. 1
0
 /**
  * Overrides the parent to handle floats in locales where the decimal separator is a comma instead of a dot
  *
  * @param   mixed   $value
  * @param   string  $operator
  *
  * @return  string
  */
 public function search($value, $operator = '=')
 {
     $value = $this->sanitiseValue($value);
     return parent::search($value, $operator);
 }