diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2014-01-17 16:29:16 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-01-17 16:32:01 +0100 |
commit | f0a5007e9a2162d6f9d51ee4abf8791af8c0f886 (patch) | |
tree | 2ecc6d6ff66386c12e751e84111a04cca8f34eb4 | |
parent | b291fb9cd7e94009aba6023e88c5e970a4aa4e96 (diff) | |
download | nextcloud-server-f0a5007e9a2162d6f9d51ee4abf8791af8c0f886.tar.gz nextcloud-server-f0a5007e9a2162d6f9d51ee4abf8791af8c0f886.zip |
fix input element closing tag
-rw-r--r-- | apps/files/templates/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index a69407805d8..5188ca56281 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -32,7 +32,7 @@ <a href="#" class="svg"></a> </div> <?php if ($_['trash']): ?> - <input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?>> + <input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?> /> <?php endif; ?> <div id="uploadprogresswrapper"> <div id="uploadprogressbar"></div> @@ -50,7 +50,7 @@ <div id="emptycontent" <?php if (!$_['emptyContent']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div> -<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"> +<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>" /> <table id="filestable" data-allow-public-upload="<?php p($_['publicUploadEnabled'])?>" data-preview-x="36" data-preview-y="36"> <thead> |