1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/15342] Fix parameter that could be null

PHPBB3-15342
This commit is contained in:
Rubén Calvo
2018-06-12 00:21:51 +02:00
parent 9184d34a51
commit 1d686fecb5

View File

@@ -295,7 +295,7 @@ class storage
*/ */
public function file_info($path) public function file_info($path)
{ {
return new file_info($this->adapter, $path); return new file_info($this->get_adapter(), $path);
} }
/** /**