From 6b6c710706779d5fb4fcd86b62b2b3218f9ae3fb Mon Sep 17 00:00:00 2001 From: Derky Date: Sun, 24 Sep 2023 13:43:42 +0200 Subject: [PATCH] [ticket/17189] Append slash after installer cache path PHPBB3-17189 --- phpBB/install/startup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/install/startup.php b/phpBB/install/startup.php index 0180996a19..0f2b1a60a0 100644 --- a/phpBB/install/startup.php +++ b/phpBB/install/startup.php @@ -159,7 +159,7 @@ function installer_shutdown_function($display_errors) installer_class_loader($phpbb_root_path, $phpEx); $supported_error_levels = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_USER_DEPRECATED; - $cache = new \phpbb\cache\driver\file(__DIR__ . '/../cache/installer'); + $cache = new \phpbb\cache\driver\file(__DIR__ . '/../cache/installer/'); $filesystem = new \phpbb\filesystem\filesystem(); if (strpos($error['file'], $filesystem->realpath($cache->cache_dir)) !== false && is_writable($cache->cache_dir)) {