diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-02-03 22:25:43 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-02-03 22:25:43 +0100 |
commit | 6f92996d98239e93b8a6e8002b048b9afd2bf352 (patch) | |
tree | 2ab4f59904714dd067644150c0b88ee9c7171288 /phpBB/phpbb/profilefields/manager.php | |
parent | ad2d1fcbcb4ca905ee7c1358e2545e1475c81ff5 (diff) | |
download | forums-6f92996d98239e93b8a6e8002b048b9afd2bf352.tar forums-6f92996d98239e93b8a6e8002b048b9afd2bf352.tar.gz forums-6f92996d98239e93b8a6e8002b048b9afd2bf352.tar.bz2 forums-6f92996d98239e93b8a6e8002b048b9afd2bf352.tar.xz forums-6f92996d98239e93b8a6e8002b048b9afd2bf352.zip |
[ticket/12159] Fix codesniffer complaints due to profilefields and passwords
The two PRs regarding profilefields and passwords manager that were recently
merged caused a few codesniffer complaints that are fixed by these changes.
PHPBB3-12159
Diffstat (limited to 'phpBB/phpbb/profilefields/manager.php')
-rw-r--r-- | phpBB/phpbb/profilefields/manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/profilefields/manager.php b/phpBB/phpbb/profilefields/manager.php index 7564c920c9..ead978374c 100644 --- a/phpBB/phpbb/profilefields/manager.php +++ b/phpBB/phpbb/profilefields/manager.php @@ -313,7 +313,7 @@ class manager $profile_field = $this->type_collection[$ident_ary['data']['field_type']]; $value = $profile_field->get_profile_value($ident_ary['value'], $ident_ary['data']); - if ($value === NULL) + if ($value === null) { continue; } |