mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
stupid PHP manual :@ the two parameters to clearstatcache() are 5.3 only. Fix r9144
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9146 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
5474fcc4ea
commit
30021ca5bc
1 changed files with 5 additions and 5 deletions
|
@ -511,7 +511,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
|
||||||
// Will most likely not work
|
// Will most likely not work
|
||||||
if (@chown($filename, $common_php_owner));
|
if (@chown($filename, $common_php_owner));
|
||||||
{
|
{
|
||||||
clearstatcache(false, $filename);
|
clearstatcache();
|
||||||
$file_uid = fileowner($filename);
|
$file_uid = fileowner($filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -521,7 +521,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
|
||||||
{
|
{
|
||||||
if (@chgrp($filename, $common_php_group));
|
if (@chgrp($filename, $common_php_group));
|
||||||
{
|
{
|
||||||
clearstatcache(false, $filename);
|
clearstatcache();
|
||||||
$file_gid = filegroup($filename);
|
$file_gid = filegroup($filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -570,7 +570,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
|
||||||
|
|
||||||
$result = @chmod($filename, ($owner << 6) + (0 << 3) + (0 << 0));
|
$result = @chmod($filename, ($owner << 6) + (0 << 3) + (0 << 0));
|
||||||
|
|
||||||
clearstatcache(false, $filename);
|
clearstatcache();
|
||||||
|
|
||||||
if (!is_null($php) || (is_readable($filename) && is_writable($filename)))
|
if (!is_null($php) || (is_readable($filename) && is_writable($filename)))
|
||||||
{
|
{
|
||||||
|
@ -581,7 +581,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
|
||||||
case 'group':
|
case 'group':
|
||||||
$result = @chmod($filename, ($owner << 6) + ($perms << 3) + (0 << 0));
|
$result = @chmod($filename, ($owner << 6) + ($perms << 3) + (0 << 0));
|
||||||
|
|
||||||
clearstatcache(false, $filename);
|
clearstatcache();
|
||||||
|
|
||||||
if (!is_null($php) || ((!($perms & CHMOD_READ) || is_readable($filename)) && (!($perms & CHMOD_WRITE) || is_writable($filename))))
|
if (!is_null($php) || ((!($perms & CHMOD_READ) || is_readable($filename)) && (!($perms & CHMOD_WRITE) || is_writable($filename))))
|
||||||
{
|
{
|
||||||
|
@ -591,7 +591,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
|
||||||
case 'other':
|
case 'other':
|
||||||
$result = @chmod($filename, ($owner << 6) + ($perms << 3) + ($perms << 0));
|
$result = @chmod($filename, ($owner << 6) + ($perms << 3) + ($perms << 0));
|
||||||
|
|
||||||
clearstatcache(false, $filename);
|
clearstatcache();
|
||||||
|
|
||||||
if (!is_null($php) || ((!($perms & CHMOD_READ) || is_readable($filename)) && (!($perms & CHMOD_WRITE) || is_writable($filename))))
|
if (!is_null($php) || ((!($perms & CHMOD_READ) || is_readable($filename)) && (!($perms & CHMOD_WRITE) || is_writable($filename))))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue