X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/c5544ea6607e49bd5f3cceecd59903687e8b1654..39bd200baed00b5b63cc62ce947ef708710ac81c:/src/phorkie/Repository/Post.php diff --git a/src/phorkie/Repository/Post.php b/src/phorkie/Repository/Post.php index 045bba1..96e5c11 100644 --- a/src/phorkie/Repository/Post.php +++ b/src/phorkie/Repository/Post.php @@ -88,14 +88,14 @@ class Repository_Post $bChanged = true; } else if ($bUpload) { move_uploaded_file( - $_FILES['files']['tmp_name'][$num]['upload'], $file->getPath() + $_FILES['files']['tmp_name'][$num]['upload'], $file->getFullPath() ); $command = $vc->getCommand('add') ->addArgument($file->getFilename()) ->execute(); $bChanged = true; } else if ($bNew || (isset($arFile['content']) && $file->getContent() != $arFile['content'])) { - file_put_contents($file->getPath(), $arFile['content']); + file_put_contents($file->getFullPath(), $arFile['content']); $command = $vc->getCommand('add') ->addArgument($file->getFilename()) ->execute();