aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/profilefields
diff options
context:
space:
mode:
authorShitiz Garg <mail@dragooon.net>2014-06-19 19:02:10 +0530
committerShitiz Garg <mail@dragooon.net>2014-06-20 16:37:42 +0530
commit28012dc9e10339d7ab66a5b2e3cd394728654f47 (patch)
treebd6bb04bc441fd9d1d94fb6ee2e8501e3f3184fa /phpBB/phpbb/profilefields
parent70d4ede9b204ba9d2c3e1ae14258cd8c879db403 (diff)
downloadforums-28012dc9e10339d7ab66a5b2e3cd394728654f47.tar
forums-28012dc9e10339d7ab66a5b2e3cd394728654f47.tar.gz
forums-28012dc9e10339d7ab66a5b2e3cd394728654f47.tar.bz2
forums-28012dc9e10339d7ab66a5b2e3cd394728654f47.tar.xz
forums-28012dc9e10339d7ab66a5b2e3cd394728654f47.zip
[ticket/12732] Add Skype custom profile field
PHPBB3-12732
Diffstat (limited to 'phpBB/phpbb/profilefields')
-rw-r--r--phpBB/phpbb/profilefields/type/type_string_common.php1
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..a317568ec8 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_PUNCTUATION' => '[a-zA-Z][\w\.,\-_]+'
);
/**