aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-11-07 19:41:22 +0000
committerMario <mario@mariovavti.com>2022-11-07 19:41:22 +0000
commit839c5a8e412aa3f22365d9fa8fe7a08cd2bc9378 (patch)
tree5117971b14459c195cfb545f718b98919485120c /Zotlabs/Module
parent40d74fa779bbb079e844f9644d7677b06103b8f3 (diff)
downloadvolse-hubzilla-839c5a8e412aa3f22365d9fa8fe7a08cd2bc9378.tar.gz
volse-hubzilla-839c5a8e412aa3f22365d9fa8fe7a08cd2bc9378.tar.bz2
volse-hubzilla-839c5a8e412aa3f22365d9fa8fe7a08cd2bc9378.zip
fix regression where automatically created directories were not public and pinned/featured state of apps was not displayed correctly
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Wall_upload.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/Zotlabs/Module/Wall_upload.php b/Zotlabs/Module/Wall_upload.php
index 6d58e4032..3e979588c 100644
--- a/Zotlabs/Module/Wall_upload.php
+++ b/Zotlabs/Module/Wall_upload.php
@@ -11,10 +11,10 @@ require_once('include/photos.php');
class Wall_upload extends \Zotlabs\Web\Controller {
function post() {
-
-
- $using_api = ((x($_FILES,'media')) ? true : false);
-
+
+
+ $using_api = ((x($_FILES,'media')) ? true : false);
+
if($using_api) {
require_once('include/api.php');
if(api_user())
@@ -24,32 +24,32 @@ class Wall_upload extends \Zotlabs\Web\Controller {
if(argc() > 1)
$channel = channelx_by_nick(argv(1));
}
-
+
if(! $channel) {
if($using_api)
return;
notice( t('Channel not found.') . EOL);
killme();
}
-
+
$observer = \App::get_observer();
-
+
$args = array( 'source' => 'editor', 'visible' => 0, 'contact_allow' => array($channel['channel_hash']));
-
+
$ret = photo_upload($channel,$observer,$args);
-
+
if(! $ret['success']) {
if($using_api)
return;
notice($ret['message']);
killme();
}
-
+
if($using_api)
return("\n\n" . $ret['body'] . "\n\n");
else
echo "\n\n" . $ret['body'] . "\n\n";
killme();
}
-
+
}