1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

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

includes/functions_convert.php and install/install_convert.php tested by Dicky.

PHPBB3-9519
This commit is contained in:
Joas Schilling
2010-08-13 16:40:56 +02:00
parent 4c95ed0eeb
commit 884cc2ac9b
2 changed files with 4 additions and 4 deletions

View File

@@ -835,7 +835,7 @@ class install_convert extends module
$this->p_master->error($user->lang['DEV_NO_TEST_FILE'], __LINE__, __FILE__);
}
if (!$local_path || !@is_writable($phpbb_root_path . $local_path))
if (!$local_path || !phpbb_is_writable($phpbb_root_path . $local_path))
{
if (!$local_path)
{