diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-07-05 23:59:09 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-09-14 13:54:48 +0200 |
commit | dbd6d33e9f474fff61c10a374bf6180c84a60940 (patch) | |
tree | 25aeb87e697beda1f2ed467244dbc2722046af22 | |
parent | 8f863d1d498fb4e3855ca2a3a1b4094d08d876b1 (diff) | |
download | forums-dbd6d33e9f474fff61c10a374bf6180c84a60940.tar forums-dbd6d33e9f474fff61c10a374bf6180c84a60940.tar.gz forums-dbd6d33e9f474fff61c10a374bf6180c84a60940.tar.bz2 forums-dbd6d33e9f474fff61c10a374bf6180c84a60940.tar.xz forums-dbd6d33e9f474fff61c10a374bf6180c84a60940.zip |
[feature/passwords] NULL should be null according to coding guidelines
PHPBB3-11610
-rw-r--r-- | phpBB/includes/crypto/manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |