Skip to content
Snippets Groups Projects
Commit 4efdbff6 authored by Robin Appelman's avatar Robin Appelman
Browse files

No need for this folder to be world accessible

parent dcc4f96d
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class CertificateManager implements ICertificateManager {
//path might not exist (e.g. non-standard OC_User::getHome() value)
//in this case create full path using 3rd (recursive=true) parameter.
//note that we use "normal" php filesystem functions here since the certs need to be local
mkdir($path, 0777, true);
mkdir($path, 0700, true);
}
$result = array();
$handle = opendir($path);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment