Allow numbers signs, parens

This commit is contained in:
snipe
2013-12-03 13:31:42 -05:00
parent ab99e6a64f
commit 19de8a15cf
+1 -1
View File
@@ -2,5 +2,5 @@
Validator::extend('alpha_space', function($attribute,$value,$parameters)
{
return preg_match("/^[-+:?'\/()_,!. a-zA-Z0-9]+$/",$value);
return preg_match("/^[-+:?#~'\/()_,!. a-zA-Z0-9]+$/",$value);
});