diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2010-08-13 16:40:56 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2010-08-13 16:40:56 +0200 |
commit | 884cc2ac9b49ba88e448764b5e91cb99cf79df81 (patch) | |
tree | e3d55fc1ea0bd51f38205db55dbfa41518c869c0 /phpBB/install | |
parent | 4c95ed0eeb497d3febe3169614e9385cefa648d2 (diff) | |
download | forums-884cc2ac9b49ba88e448764b5e91cb99cf79df81.tar forums-884cc2ac9b49ba88e448764b5e91cb99cf79df81.tar.gz forums-884cc2ac9b49ba88e448764b5e91cb99cf79df81.tar.bz2 forums-884cc2ac9b49ba88e448764b5e91cb99cf79df81.tar.xz forums-884cc2ac9b49ba88e448764b5e91cb99cf79df81.zip |
[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
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/install_convert.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php index 8c3ffd61a8..814b50cf68 100644 --- a/phpBB/install/install_convert.php +++ b/phpBB/install/install_convert.php @@ -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) { |