From 6f92996d98239e93b8a6e8002b048b9afd2bf352 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Mon, 3 Feb 2014 22:25:43 +0100 Subject: [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 --- phpBB/phpbb/profilefields/manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/phpbb/profilefields/manager.php') 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; } -- cgit v1.2.1