Added is_readable to permission check #258

This commit is contained in:
Tobias Reich 2014-11-05 19:50:02 +01:00
parent ba42169397
commit 3f2a73181a

View File

@ -121,13 +121,9 @@ function get_hashed_password($password) {
function hasPermissions($path) {
/* assume that if running with the same uid as the owner of the directory it's ok */
//$stat = @stat($path);
//if ($stat && ($stat['uid'] == getmyuid())) return true;
//if (substr(sprintf('%o', @fileperms($path)), -4)!=$permissions) return false;
//else return true;
if (is_readable($path)===true&&
is_writeable($path)===true) return true;
if (is_writeable($path)) return true;
return false;
}