Fix is_writable check for templates/cache

This commit is contained in:
kpcyrd
2014-07-12 19:59:39 +02:00
committed by czaks
parent fa198e207f
commit 9a98d518a0
2 changed files with 2 additions and 2 deletions

View File

@@ -721,7 +721,7 @@ if ($step == 0) {
array(
'category' => 'File permissions',
'name' => getcwd() . '/templates/cache',
'result' => is_writable('templates') && (!is_dir('templates/cache') || is_writable('templates/cache')),
'result' => is_writable('templates') || (is_dir('templates/cache') && is_writable('templates/cache')),
'required' => true,
'message' => 'You must give vichan permission to create (and write to) the <code>templates/cache</code> directory or performance will be drastically reduced.'
),