Skip to content

Commit

Permalink
Fix visual checkbox issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jvillafanez committed Jan 17, 2019
1 parent f91d139 commit 51b5578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files_external/templates/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
<?php endforeach; ?>
<br/>
<input type="checkbox" name="allowUserMountSharing" id="allowUserMountSharing" class="checkbox"
value="1" <?php if ($_['allowUserMountSharing'] === 'yes') {
value="1" <?php if ($_['allowUserMountSharing']) {
print_unescaped(' checked="checked"');
} ?> />
<label for="allowUserMountSharing"><?php p($l->t('Allow sharing on user-mounted external storages')); ?></label> <span id="userMountSharingMsg" class="msg"></span>
Expand Down

0 comments on commit 51b5578

Please sign in to comment.