no anonymous upload on files only folders
This commit is contained in:
parent
955646c461
commit
13991be5ce
|
@ -151,6 +151,9 @@ if (isset($path)) {
|
||||||
if (\OCP\App::isEnabled('files_encryption')) {
|
if (\OCP\App::isEnabled('files_encryption')) {
|
||||||
$allowPublicUploadEnabled = false;
|
$allowPublicUploadEnabled = false;
|
||||||
}
|
}
|
||||||
|
if (isset($file)) {
|
||||||
|
$allowPublicUploadEnabled = false;
|
||||||
|
}
|
||||||
$tmpl->assign('allowPublicUploadEnabled', $allowPublicUploadEnabled);
|
$tmpl->assign('allowPublicUploadEnabled', $allowPublicUploadEnabled);
|
||||||
$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize);
|
$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize);
|
||||||
$tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize));
|
$tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize));
|
||||||
|
|
|
@ -181,11 +181,13 @@ OC.Share={
|
||||||
html += '<div id="linkPass">';
|
html += '<div id="linkPass">';
|
||||||
html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Password')+'" />';
|
html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Password')+'" />';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
if (itemType == 'folder') {
|
||||||
html += '<div id="allowPublicUploadWrapper" style="display:none;">';
|
html += '<div id="allowPublicUploadWrapper" style="display:none;">';
|
||||||
html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ((allowPublicUploadStatus) ? 'checked="checked"' : '') + ' />';
|
html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ((allowPublicUploadStatus) ? 'checked="checked"' : '') + ' />';
|
||||||
html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow Public Upload') + '</label>';
|
html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow Public Upload') + '</label>';
|
||||||
html += '</div></div>';
|
html += '</div>';
|
||||||
html += '<form id="emailPrivateLink" >';
|
}
|
||||||
|
html += '</div><form id="emailPrivateLink" >';
|
||||||
html += '<input id="email" style="display:none; width:62%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />';
|
html += '<input id="email" style="display:none; width:62%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />';
|
||||||
html += '<input id="emailButton" style="display:none;" type="submit" value="'+t('core', 'Send')+'" />';
|
html += '<input id="emailButton" style="display:none;" type="submit" value="'+t('core', 'Send')+'" />';
|
||||||
html += '</form>';
|
html += '</form>';
|
||||||
|
|
Loading…
Reference in New Issue