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.
This commit is contained in:
Vincent Petry 2013-10-07 13:15:25 +02:00
parent 27579f36f6
commit 68fbd7b922
1 changed files with 1 additions and 1 deletions

View File

@ -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 == '') {