X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=1d8a9e7f76e85c2329693a8e0ca0c68c07d64612;hb=472345d7402e28cecb82a8c7de35625b0f3fac40;hp=084bca112e80941cc84b9a25e4a5ca4835e592b2;hpb=cfb99aa32382a18829fd79121f0b348dd0577dc9;p=friendica.git diff --git a/boot.php b/boot.php index 084bca112e..1d8a9e7f76 100644 --- a/boot.php +++ b/boot.php @@ -2472,7 +2472,7 @@ function get_temppath() { // Check if it is usable if (($temppath != "") AND App::directory_usable($temppath)) { // To avoid any interferences with other systems we create our own directory - $new_temppath .= "/".$a->get_hostname(); + $new_temppath = $temppath."/".$a->get_hostname(); if (!is_dir($new_temppath)) { /// @TODO There is a mkdir()+chmod() upwards, maybe generalize this (+ configurable) into a function/method? mkdir($new_temppath);