aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-01-10 00:12:59 +0100
committerJoas Schilling <nickvergessen@gmx.de>2015-01-10 00:12:59 +0100
commit6b328912ce3b60d8c7500c7bad6edcf4c8478e9a (patch)
treebe4c79cc03302cf8998c6351d9ea32beaef7ca9f /phpBB/phpbb
parenta8259f7c8230e24ade214f1251960a5ad3adbf43 (diff)
parent8ae1b0c52e21d105d1f35b5174081423b7c17bc4 (diff)
downloadforums-6b328912ce3b60d8c7500c7bad6edcf4c8478e9a.tar
forums-6b328912ce3b60d8c7500c7bad6edcf4c8478e9a.tar.gz
forums-6b328912ce3b60d8c7500c7bad6edcf4c8478e9a.tar.bz2
forums-6b328912ce3b60d8c7500c7bad6edcf4c8478e9a.tar.xz
forums-6b328912ce3b60d8c7500c7bad6edcf4c8478e9a.zip
Merge branch 'develop-ascraeus' into develop
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/profilefields/type/type_url.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_url.php b/phpBB/phpbb/profilefields/type/type_url.php
index bc8ac869d0..fe0bffd582 100644
--- a/phpBB/phpbb/profilefields/type/type_url.php
+++ b/phpBB/phpbb/profilefields/type/type_url.php
@@ -64,7 +64,7 @@ class type_url extends type_string
return false;
}
- if (!preg_match('#^' . get_preg_expression('url') . '$#i', $field_value))
+ if (!preg_match('#^' . get_preg_expression('url') . '$#iu', $field_value))
{
return $this->user->lang('FIELD_INVALID_URL', $this->get_field_name($field_data['lang_name']));
}