introducing the new tmp dir

darcs-hash:20080227215640-23886-606fc55ada5d6c3c80f14967746ec6aa0a4b3321.gz
This commit is contained in:
Michael Klier 2008-02-27 22:56:40 +01:00
parent 059c03b9d7
commit de33a58fdd
2 changed files with 3 additions and 1 deletions

View File

@ -157,7 +157,8 @@ function init_paths(){
'metadir' => 'meta',
'cachedir' => 'cache',
'indexdir' => 'index',
'lockdir' => 'locks');
'lockdir' => 'locks',
'tmpdir' => 'tmp');
foreach($paths as $c => $p){
if(empty($conf[$c])) $conf[$c] = $conf['savedir'].'/'.$p;

View File

@ -396,6 +396,7 @@ function check_permissions(){
'cache' => DOKU_INC.'data/cache',
'locks' => DOKU_INC.'data/locks',
'index' => DOKU_INC.'data/index',
'tmp' => DOKU_INC.'data/tmp'
);
$ok = true;