From dbd6d33e9f474fff61c10a374bf6180c84a60940 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Fri, 5 Jul 2013 23:59:09 +0200 Subject: [PATCH] [feature/passwords] NULL should be null according to coding guidelines PHPBB3-11610 --- phpBB/includes/crypto/manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/crypto/manager.php b/phpBB/includes/crypto/manager.php index 26b80087b8..6af8cc840e 100644 --- a/phpBB/includes/crypto/manager.php +++ b/phpBB/includes/crypto/manager.php @@ -89,7 +89,7 @@ class phpbb_crypto_manager */ protected function load_crypto_helper() { - if ($this->helper === NULL) + if ($this->helper === null) { $this->helper = new phpbb_crypto_helper($this, $this->container); }