Browse Source

Change cache folders rights (766 -> 755)

pull/5/head
Jaussoin Timothée 15 years ago
parent
commit
571cd7e8d9
  1. 2
      lib/Cache.php

2
lib/Cache.php

@ -10,7 +10,7 @@ function movim_cache($key)
$login = $user->getLogin();
if(!is_dir(BASE_PATH."/user/".$login."/cache"))
mkdir(BASE_PATH."/user/".$login."/cache", 0766);
mkdir(BASE_PATH."/user/".$login."/cache", 0755);
if(func_num_args() == 1) {
if(file_exists(BASE_PATH."/user/".$login."/cache/".$key)) {

Loading…
Cancel
Save