diff options
Diffstat (limited to 'inc/common.php')
-rw-r--r-- | inc/common.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/common.php b/inc/common.php index 4d52c0ee6..a073ebeaa 100644 --- a/inc/common.php +++ b/inc/common.php @@ -1283,6 +1283,12 @@ function check(){ msg('Cachedir is not writable',-1); } + if(is_writable($conf['lockdir'])){ + msg('Lockdir is writable',1); + }else{ + msg('Lockdir is not writable',-1); + } + if(is_writable(DOKU_CONF.'users.auth.php')){ msg('conf/users.auth.php is writable',1); }else{ |