1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-05 08:23:28 +02:00

Merge branch '3.2.x'

This commit is contained in:
Marc Alexander 2016-06-26 10:27:26 +02:00
commit 8bdbca3f52

View File

@ -687,10 +687,10 @@ class queue
*/
function queue()
{
global $phpEx, $phpbb_root_path, $phpbb_filesystem;
global $phpEx, $phpbb_root_path, $phpbb_filesystem, $phpbb_container;
$this->data = array();
$this->cache_file = "{$phpbb_root_path}cache/queue.$phpEx";
$this->cache_file = $phpbb_container->getParameter('core.cache_dir') . "queue.$phpEx";
$this->filesystem = $phpbb_filesystem;
}