diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-20 16:37:18 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-20 16:37:43 +0530 |
commit | 352f3b7e78f4020c7ce726981f3faef8cc8f33dc (patch) | |
tree | 1767597186c2399909e77021b1da4d716ec8f3a9 /phpBB/phpbb | |
parent | 9d3f437149f21963532245f1ae12867291f04033 (diff) | |
download | forums-352f3b7e78f4020c7ce726981f3faef8cc8f33dc.tar forums-352f3b7e78f4020c7ce726981f3faef8cc8f33dc.tar.gz forums-352f3b7e78f4020c7ce726981f3faef8cc8f33dc.tar.bz2 forums-352f3b7e78f4020c7ce726981f3faef8cc8f33dc.tar.xz forums-352f3b7e78f4020c7ce726981f3faef8cc8f33dc.zip |
[ticket/12732] Missing comma after validation definition
PHPBB3-12732
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_string_common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_string_common.php b/phpBB/phpbb/profilefields/type/type_string_common.php index a317568ec8..32356c852a 100644 --- a/phpBB/phpbb/profilefields/type/type_string_common.php +++ b/phpBB/phpbb/profilefields/type/type_string_common.php @@ -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\.,\-_]+', ); /** |