aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-01-20 00:15:06 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-01-20 00:15:06 +0100
commit12932e8113f32be76734703681d41afb36fd7309 (patch)
tree550e1a5e82dd59a482fabf59367f0c3518935dea /phpBB/includes
parent430a0c1c212015f142777a6a31ce056c11e98ed2 (diff)
downloadforums-12932e8113f32be76734703681d41afb36fd7309.tar
forums-12932e8113f32be76734703681d41afb36fd7309.tar.gz
forums-12932e8113f32be76734703681d41afb36fd7309.tar.bz2
forums-12932e8113f32be76734703681d41afb36fd7309.tar.xz
forums-12932e8113f32be76734703681d41afb36fd7309.zip
[ticket/11201] Use !== null, its faster
PHPBB3-11201
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/acp_profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_profile.php b/phpBB/includes/acp/acp_profile.php
index d588a34cec..c37d501aac 100644
--- a/phpBB/includes/acp/acp_profile.php
+++ b/phpBB/includes/acp/acp_profile.php
@@ -574,7 +574,7 @@ class acp_profile
foreach ($key_ary as $key)
{
$var = $profile_field->prepare_hidden_fields($step, $key, $action, $field_data);
- if (!is_null($var))
+ if ($var !== null)
{
$_new_key_ary[$key] = $profile_field->prepare_hidden_fields($step, $key, $action, $field_data);
}