From 19de8a15cf0edf086f72c4325b3e2cf191139d6d Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 3 Dec 2013 13:31:42 -0500 Subject: [PATCH] Allow numbers signs, parens --- app/validators.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/validators.php b/app/validators.php index 32f5dbf566..e6407872e7 100644 --- a/app/validators.php +++ b/app/validators.php @@ -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); });