diff options
author | jan <jan@jandecaluwe.com> | 2005-05-12 22:42:25 +0200 |
---|---|---|
committer | jan <jan@jandecaluwe.com> | 2005-05-12 22:42:25 +0200 |
commit | 8c4f28e8218f0ffb4c01bfd99c7420114b839c4e (patch) | |
tree | 7e555672525e915191303d319ded5dc70b64bfda /inc/common.php | |
parent | 7009a5a9c3eec40fc7ae8aba3932be002d157b98 (diff) | |
download | rpg-8c4f28e8218f0ffb4c01bfd99c7420114b839c4e.tar.gz rpg-8c4f28e8218f0ffb4c01bfd99c7420114b839c4e.tar.bz2 |
Turn sensitive files into scripts that exit immediately
darcs-hash:20050512204225-45605-bee22b4df3d23374bc4922ede8f48106ea217209.gz
Diffstat (limited to 'inc/common.php')
-rw-r--r-- | inc/common.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/common.php b/inc/common.php index 2253402b4..1f79822a6 100644 --- a/inc/common.php +++ b/inc/common.php @@ -791,10 +791,10 @@ function check(){ msg('Mediadir is not writable',-1); } - if(is_writable('conf/users.auth')){ - msg('conf/users.auth is writable',1); + if(is_writable('conf/users.auth.php')){ + msg('conf/users.auth.php is writable',1); }else{ - msg('conf/users.auth is not writable',0); + msg('conf/users.auth.php is not writable',0); } if(function_exists('mb_strpos')){ |