minor gui fix to support apostroph in the query

This commit is contained in:
SJ
2013-04-25 21:39:02 +02:00
parent a132c85be8
commit 8e27aea28d
4 changed files with 7 additions and 3 deletions

View File

@ -794,6 +794,7 @@ class ModelSearchSearch extends Model {
if($s == '') { return $s; }
$s = preg_replace("/\'/", ' ', $s);
$s = preg_replace("/\./", ' ', $s);
return $s;
}