We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 864daf9 commit 97df102Copy full SHA for 97df102
src/phpFastCache/Core/Pool/IO/IOHelperTrait.php
@@ -70,8 +70,8 @@ public function getPath($readonly = false)
70
}
71
72
$path_suffix = $securityKey . DIRECTORY_SEPARATOR . $this->getDriverName();
73
- $full_path = $path . $path_suffix;
74
- $full_path_tmp = $tmp_dir . $path_suffix;
+ $full_path = Directory::getAbsolutePath($path . $path_suffix);
+ $full_path_tmp = Directory::getAbsolutePath($tmp_dir . $path_suffix);
75
$full_path_hash = md5($full_path);
76
77
/**
0 commit comments