Fixed label for sharing notification to be clickable

Fixed the sharing notification checkbox label in the file sharing
dropdown, which makes it possible to click on the label directly.
remotes/origin/stable6
Vincent Petry 13 years ago
parent 27579f36f6
commit 68fbd7b922
  1. 2
      core/js/share.js

@ -350,7 +350,7 @@ OC.Share={
if (mailSend === '1') {
checked = 'checked';
}
html += '<input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>';
html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>';
}
if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) {
if (editChecked == '') {

Loading…
Cancel
Save