summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/init.php3
-rw-r--r--install.php1
2 files changed, 3 insertions, 1 deletions
diff --git a/inc/init.php b/inc/init.php
index 22959cf16..d730ca76c 100644
--- a/inc/init.php
+++ b/inc/init.php
@@ -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;
diff --git a/install.php b/install.php
index bf8bccea2..3c0eb604e 100644
--- a/install.php
+++ b/install.php
@@ -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;