1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[ticket/12732] Missing comma after validation definition

PHPBB3-12732
This commit is contained in:
Shitiz Garg 2014-06-20 16:37:18 +05:30
parent 9d3f437149
commit 352f3b7e78

View File

@ -21,7 +21,7 @@ abstract class type_string_common extends type_base
'ALPHA_ONLY' => '[\w]+',
'ALPHA_UNDERSCORE' => '[\w_]+',
'ALPHA_SPACERS' => '[\w_\+\. \-\[\]]+',
'ALPHA_PUNCTUATION' => '[a-zA-Z][\w\.,\-_]+'
'ALPHA_PUNCTUATION' => '[a-zA-Z][\w\.,\-_]+',
);
/**