diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-02-05 14:00:49 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-02-05 14:03:44 +0100 |
commit | 30673e478672af316c057f562a8a02babdbd3160 (patch) | |
tree | 90c5156def04dee80e9f96ce41ad2e49c34bb3df /lib/util.php | |
parent | 25e777ef5e9c68ac45d32b71a0174febf74d47ef (diff) | |
download | nextcloud-server-30673e478672af316c057f562a8a02babdbd3160.tar.gz nextcloud-server-30673e478672af316c057f562a8a02babdbd3160.zip |
writable not writeable
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 6c19c5416a2..abd918044b5 100644 --- a/lib/util.php +++ b/lib/util.php @@ -226,7 +226,7 @@ class OC_Util { $errors[]=array('error'=>'PHP module ctype is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); } - if(file_exists(OC::$SERVERROOT."/config/config.php") and !is_writeable(OC::$SERVERROOT."/config/config.php")){ + if(file_exists(OC::$SERVERROOT."/config/config.php") and !is_writable(OC::$SERVERROOT."/config/config.php")){ $errors[]=array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver use write access to the config directory in owncloud"); } |