mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00:00
[ticket/15692] Fix full_check in exist method
PHPBB3-15692
This commit is contained in:
parent
d5df62597b
commit
0c1bf3c561
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ class storage
|
||||||
*/
|
*/
|
||||||
public function exists($path, $full_check = false)
|
public function exists($path, $full_check = false)
|
||||||
{
|
{
|
||||||
return ($this->is_tracked($path) && !$full_check || $this->get_adapter()->exists($path));
|
return ($this->is_tracked($path) && (!$full_check || $this->get_adapter()->exists($path)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue