aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/request
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-02-04 00:57:39 +0100
committerAndreas Fischer <bantu@phpbb.com>2012-02-04 00:57:39 +0100
commit42d9edc4f268d4f0894bc140c2aefffbd87e3361 (patch)
tree1f2de87bdd7c53a3fcbb754d04416e1e574414ca /phpBB/includes/request
parentcddd63aae045a833e9a3ec4bb396b3987f95cbd3 (diff)
downloadforums-42d9edc4f268d4f0894bc140c2aefffbd87e3361.tar
forums-42d9edc4f268d4f0894bc140c2aefffbd87e3361.tar.gz
forums-42d9edc4f268d4f0894bc140c2aefffbd87e3361.tar.bz2
forums-42d9edc4f268d4f0894bc140c2aefffbd87e3361.tar.xz
forums-42d9edc4f268d4f0894bc140c2aefffbd87e3361.zip
[ticket/10495] Update request/type_cast_helper for PHP 5.4 magic_quotes_gpc drop
PHPBB3-10495
Diffstat (limited to 'phpBB/includes/request')
-rw-r--r--phpBB/includes/request/type_cast_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/request/type_cast_helper.php b/phpBB/includes/request/type_cast_helper.php
index 5aa0372328..561e8fc251 100644
--- a/phpBB/includes/request/type_cast_helper.php
+++ b/phpBB/includes/request/type_cast_helper.php
@@ -34,7 +34,7 @@ class phpbb_request_type_cast_helper implements phpbb_request_type_cast_helper_i
*/
public function __construct()
{
- if (version_compare(PHP_VERSION, '6.0.0-dev', '>='))
+ if (version_compare(PHP_VERSION, '5.4.0-dev', '>='))
{
$this->strip = false;
}