From 5897876f2ffc6c0655826f52ddfd06d1ee7c497f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Wed, 19 Jul 2017 14:33:35 +0200 Subject: [PATCH] [ticket/15287] Apply suggested change PHPBB3-15287 --- phpBB/phpbb/storage/adapter/local.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/storage/adapter/local.php b/phpBB/phpbb/storage/adapter/local.php index 1d229abf7b..cdf06176d5 100644 --- a/phpBB/phpbb/storage/adapter/local.php +++ b/phpBB/phpbb/storage/adapter/local.php @@ -51,7 +51,7 @@ class local implements adapter_interface { $this->root_path = $this->phpbb_root_path . $options['path']; - if (substr($this->root_path, -1, 1) != DIRECTORY_SEPARATOR) + if (substr($this->root_path, -1, 1) !== DIRECTORY_SEPARATOR) { $this->root_path = $this->root_path . DIRECTORY_SEPARATOR; }