option to not publish photos on wall

This commit is contained in:
Friendika 2011-10-01 06:19:34 -07:00
parent 60696c01e7
commit 38e3373963
2 changed files with 2 additions and 0 deletions

Binary file not shown.

View File

@ -96,6 +96,7 @@ function createUploader() {
uploader.setParams( {
newalbum : document.getElementById('photos-upload-newalbum').value,
album : document.getElementById('photos-upload-album-select').value,
not_visible : document.getElementById('photos-upload-noshare').checked,
group_allow : acl.allow_gid.join(','),
contact_allow : acl.allow_cid.join(','),
group_deny : acl.deny_gid.join(','),
@ -105,6 +106,7 @@ function createUploader() {
uploader.setParams( {
newalbum : document.getElementById('photos-upload-newalbum').value,
album : document.getElementById('photos-upload-album-select').value,
not_visible : document.getElementById('photos-upload-noshare').checked,
group_allow : getSelected(document.getElementById('group_allow')).join(','),
contact_allow : getSelected(document.getElementById('contact_allow')).join(','),
group_deny : getSelected(document.getElementById('group_deny')).join(','),