[ticket/9519] Replace remaining is_writable() calls with phpbb_is_writable().

PHPBB3-9519
This commit is contained in:
Joas Schilling 2010-08-13 17:10:35 +02:00
parent 884cc2ac9b
commit 89b35f7ab9
2 changed files with 4 additions and 4 deletions

View file

@ -533,7 +533,7 @@ function validate_config_vars($config_vars, &$cfg_array, &$error)
// Check if the path is writable // Check if the path is writable
if ($config_definition['validate'] == 'wpath' || $config_definition['validate'] == 'rwpath') if ($config_definition['validate'] == 'wpath' || $config_definition['validate'] == 'rwpath')
{ {
if (file_exists($phpbb_root_path . $cfg_array[$config_name]) && !@is_writable($phpbb_root_path . $cfg_array[$config_name])) if (file_exists($phpbb_root_path . $cfg_array[$config_name]) && !phpbb_is_writable($phpbb_root_path . $cfg_array[$config_name]))
{ {
$error[] = sprintf($user->lang['DIRECTORY_NOT_WRITABLE'], $cfg_array[$config_name]); $error[] = sprintf($user->lang['DIRECTORY_NOT_WRITABLE'], $cfg_array[$config_name]);
} }

View file

@ -701,7 +701,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
clearstatcache(); clearstatcache();
if (is_readable($filename) && is_writable($filename)) if (is_readable($filename) && phpbb_is_writable($filename))
{ {
break; break;
} }
@ -711,7 +711,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
clearstatcache(); clearstatcache();
if ((!($perms & CHMOD_READ) || is_readable($filename)) && (!($perms & CHMOD_WRITE) || is_writable($filename))) if ((!($perms & CHMOD_READ) || is_readable($filename)) && (!($perms & CHMOD_WRITE) || phpbb_is_writable($filename)))
{ {
break; break;
} }
@ -721,7 +721,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
clearstatcache(); clearstatcache();
if ((!($perms & CHMOD_READ) || is_readable($filename)) && (!($perms & CHMOD_WRITE) || is_writable($filename))) if ((!($perms & CHMOD_READ) || is_readable($filename)) && (!($perms & CHMOD_WRITE) || phpbb_is_writable($filename)))
{ {
break; break;
} }