Commit 370aef9b authored by Ad Schellevis's avatar Ad Schellevis

(mvc) add . as valid character in queryfilter class

parent bc61fd79
......@@ -38,6 +38,6 @@ class QueryFilter
{
public function filter($value)
{
return preg_replace("/[^0-9,a-z,A-Z, ,*,-]/", "", $value);
return preg_replace("/[^0-9,a-z,A-Z, ,*,-,.]/", "", $value);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment