diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-17 17:51:07 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-20 18:10:08 +0530 |
commit | 310b8af1482021cf8ab6fbe839a4150ff281c4e1 (patch) | |
tree | 76aa3351c8724e7c29171c7690a5b129db200b22 /phpBB/phpbb/profilefields | |
parent | 70d4ede9b204ba9d2c3e1ae14258cd8c879db403 (diff) | |
download | forums-310b8af1482021cf8ab6fbe839a4150ff281c4e1.tar forums-310b8af1482021cf8ab6fbe839a4150ff281c4e1.tar.gz forums-310b8af1482021cf8ab6fbe839a4150ff281c4e1.tar.bz2 forums-310b8af1482021cf8ab6fbe839a4150ff281c4e1.tar.xz forums-310b8af1482021cf8ab6fbe839a4150ff281c4e1.zip |
[ticket/12729] Add Facebook custom profile field
PHPBB3-12729
Diffstat (limited to 'phpBB/phpbb/profilefields')
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_string_common.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_string_common.php b/phpBB/phpbb/profilefields/type/type_string_common.php index 7d0cb04d7c..014950c15f 100644 --- a/phpBB/phpbb/profilefields/type/type_string_common.php +++ b/phpBB/phpbb/profilefields/type/type_string_common.php @@ -21,6 +21,7 @@ abstract class type_string_common extends type_base 'ALPHA_ONLY' => '[\w]+', 'ALPHA_UNDERSCORE' => '[\w_]+', 'ALPHA_SPACERS' => '[\w_\+\. \-\[\]]+', + 'ALPHA_DOTS' => '[\w.]+', ); /** |