// Validate::isGenericName now allow "#" #PSCFV-6530

This commit is contained in:
Damien Metzger
2013-07-18 18:22:36 +02:00
parent a71a5d7c18
commit c70fe92dac

View File

@@ -380,7 +380,7 @@ class ValidateCore
*/
public static function isGenericName($name)
{
return empty($name) || preg_match('/^[^<>=#{}]*$/u', $name);
return empty($name) || preg_match('/^[^<>={}]*$/u', $name);
}
/**