Skip to content

Commit 60f0a98

Browse files
committed
Merge pull request #261 from Geolim4/final
Fixed path bug with extension
2 parents 8ccdb78 + a04e317 commit 60f0a98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/phpFastCache/Core/DriverAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ protected function backup()
554554
*/
555555
protected function required_extension($name)
556556
{
557-
require_once(__DIR__ . '/../' . $this->extension_dir . '/' . $name . PHP_EXT);
557+
require_once(__DIR__ . '/../' . $this->extension_dir . '/' . $name . '.' . PHP_EXT);
558558
}
559559

560560

0 commit comments

Comments
 (0)