mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
[ticket/15342] free_space() now return false if there is any error
PHPBB3-15342
This commit is contained in:
@@ -432,11 +432,6 @@ class local implements adapter_interface, stream_interface
|
||||
{
|
||||
$free_space = @disk_free_space($this->root_path);
|
||||
|
||||
if ($free_space === false)
|
||||
{
|
||||
throw new exception('STORAGE_CANNOT_GET_FREE_SPACE');
|
||||
}
|
||||
|
||||
return (int) $free_space;
|
||||
return $free_space;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user