mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10103] $rv had too few characters.
PHPBB3-10103
This commit is contained in:
parent
4cc81f1ffa
commit
3924676f2b
1 changed files with 3 additions and 3 deletions
6
phpBB/includes/cache/driver/file.php
vendored
6
phpBB/includes/cache/driver/file.php
vendored
|
@ -708,16 +708,16 @@ class phpbb_cache_driver_file extends phpbb_cache_driver_base
|
||||||
|
|
||||||
phpbb_chmod($file, CHMOD_READ | CHMOD_WRITE);
|
phpbb_chmod($file, CHMOD_READ | CHMOD_WRITE);
|
||||||
|
|
||||||
$rv = true;
|
$return_value = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$rv = false;
|
$return_value = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$lock->release();
|
$lock->release();
|
||||||
|
|
||||||
return $rv;
|
return $return_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue