diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-21 03:49:59 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-21 03:49:59 +0530 |
commit | ff057dfc8ec2dd195b263d9ffb4afc5051c52896 (patch) | |
tree | 1df9ab6a690d3bcf7d2585b3f207b114ea63957d /tests/profilefields | |
parent | 72f3ff2dcc9f2bdfe161f6bfb6383680125b9bf2 (diff) | |
download | forums-ff057dfc8ec2dd195b263d9ffb4afc5051c52896.tar forums-ff057dfc8ec2dd195b263d9ffb4afc5051c52896.tar.gz forums-ff057dfc8ec2dd195b263d9ffb4afc5051c52896.tar.bz2 forums-ff057dfc8ec2dd195b263d9ffb4afc5051c52896.tar.xz forums-ff057dfc8ec2dd195b263d9ffb4afc5051c52896.zip |
[ticket/12730] Fix type_googleplus_test to use same validation rule as the field
PHPBB3-12730
Diffstat (limited to 'tests/profilefields')
-rw-r--r-- | tests/profilefields/type_googleplus_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/profilefields/type_googleplus_test.php b/tests/profilefields/type_googleplus_test.php index 389f101260..fdbdd86553 100644 --- a/tests/profilefields/type_googleplus_test.php +++ b/tests/profilefields/type_googleplus_test.php @@ -53,7 +53,7 @@ class phpbb_profilefield_type_googleplus_test extends phpbb_test_case 'lang_id' => 1, 'lang_name' => 'field', 'field_required' => false, - 'field_validation' => '.*', + 'field_validation' => '[\w]+', ); $field_options = array_merge($default_field_options, $field_options); |