aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/File_upload.php
diff options
context:
space:
mode:
authorgit-marijus <mario@mariovavti.com>2017-07-30 19:21:02 +0200
committergit-marijus <mario@mariovavti.com>2017-07-30 19:21:02 +0200
commit4a071b9a1cac32ed331a9a4e76d8a6c9aa312bef (patch)
treec2b2b9dcbfdfcbf4ab01c71f9b9eb574183dd399 /Zotlabs/Module/File_upload.php
parentead80481b967d529956694c7d8125e92fccee8c1 (diff)
downloadvolse-hubzilla-4a071b9a1cac32ed331a9a4e76d8a6c9aa312bef.tar.gz
volse-hubzilla-4a071b9a1cac32ed331a9a4e76d8a6c9aa312bef.tar.bz2
volse-hubzilla-4a071b9a1cac32ed331a9a4e76d8a6c9aa312bef.zip
ltrim $display_path in attach_store() to be consistent with attach_mkdir() and go to created folder after successfully creating one
Diffstat (limited to 'Zotlabs/Module/File_upload.php')
-rw-r--r--Zotlabs/Module/File_upload.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zotlabs/Module/File_upload.php b/Zotlabs/Module/File_upload.php
index f036d3f43..bce81ad7a 100644
--- a/Zotlabs/Module/File_upload.php
+++ b/Zotlabs/Module/File_upload.php
@@ -35,6 +35,8 @@ class File_upload extends \Zotlabs\Web\Controller {
if($_REQUEST['filename']) {
$r = attach_mkdir($channel, get_observer_hash(), $_REQUEST);
+ if($r['success'])
+ goaway(z_root() . '/cloud/' . $channel['channel_address'] . '/' . $r['data']['display_path']);
}
else {
$r = attach_store($channel, get_observer_hash(), '', $_REQUEST);