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

[ticket/15287] Fix variable name

PHPBB3-15287
This commit is contained in:
Rubén Calvo 2017-07-21 12:04:06 +02:00
parent 8d7e8d4311
commit a09a50670c

@ -188,7 +188,7 @@ class local implements adapter_interface
protected function ensure_directory_exists($path)
{
$path = dirname($this->root_path . $path);
$path = filesystem_helper::make_path_relative($directory, $this->root_path);
$path = filesystem_helper::make_path_relative($path, $this->root_path);
if (!$this->exists($path))
{