removed config directories from permission check, might be read-only intentionally

This commit is contained in:
Roland Gruber 2005-11-07 19:03:20 +00:00
parent aa97418ded
commit d067af1190
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ if (! function_exists('gettext') || !function_exists('_')) {
$criticalErrors[] = array("ERROR", "Your PHP has no gettext support!", "Please install gettext for PHP.");
}
// check file permissions
$writableDirs = array('config', 'config/profiles', 'config/pdf', 'sess', 'tmp', );
$writableDirs = array('sess', 'tmp');
for ($i = 0; $i < sizeof($writableDirs); $i++) {
$path = realpath('../') . "/" . $writableDirs[$i];
if (!is_writable($path)) {