aboutsummaryrefslogtreecommitdiffstats
path: root/mod/wall_upload.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-03-10 15:43:15 -0700
committerfriendica <info@friendica.com>2015-03-10 15:43:15 -0700
commit5b35f1e6c4fbf0fd941c6d292b9c9b5847b64d0b (patch)
tree2f4b06a34f7e80a24ec6ac3375cf1918d5d991a0 /mod/wall_upload.php
parent57384b9f9fa16d5a03d2e9618ee551a3d1f8c2b5 (diff)
downloadvolse-hubzilla-5b35f1e6c4fbf0fd941c6d292b9c9b5847b64d0b.tar.gz
volse-hubzilla-5b35f1e6c4fbf0fd941c6d292b9c9b5847b64d0b.tar.bz2
volse-hubzilla-5b35f1e6c4fbf0fd941c6d292b9c9b5847b64d0b.zip
Change logic of "don't create a status post for this photo upload" and turn it into a bona-fide on/off toggle. This takes up one more vertical line, but we have it to spare, and the single button (while concise visually) provided no feedback of the current state, or indicate whether a second click toggled it. Some addons use this setting so addons will need to be pulled when this is pulled in order to remain in sync.
Diffstat (limited to 'mod/wall_upload.php')
-rw-r--r--mod/wall_upload.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/wall_upload.php b/mod/wall_upload.php
index 81ca643df..31a497f0f 100644
--- a/mod/wall_upload.php
+++ b/mod/wall_upload.php
@@ -32,7 +32,7 @@ function wall_upload_post(&$a) {
$observer = $a->get_observer();
- $args = array( 'source' => 'editor', 'not_visible' => 1, 'contact_allow' => array($channel['channel_hash']));
+ $args = array( 'source' => 'editor', 'visible' => 0, 'contact_allow' => array($channel['channel_hash']));
$ret = photo_upload($channel,$observer,$args);