diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-28 17:58:23 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-28 17:58:23 +0200 |
commit | 05dc265ea2f9efc7e1e81927e361895f93abb7cc (patch) | |
tree | df5dde372866b0cb4ece8dfb78e1bab7197a62c4 /apps/files_trashbin | |
parent | ac9e07c589e65abd025b5ca867a353b5cb579dc2 (diff) | |
download | nextcloud-server-05dc265ea2f9efc7e1e81927e361895f93abb7cc.tar.gz nextcloud-server-05dc265ea2f9efc7e1e81927e361895f93abb7cc.zip |
html input tag has no closing tag
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/templates/index.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index ccfcab6ae68..7c673c317e0 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,3 +1,4 @@ +<?php /** @var $l OC_L10N */ ?> <div id="controls"> <div id="file_action_panel"></div> </div> @@ -5,8 +6,8 @@ <div id="emptycontent" class="hidden"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div> -<input type="hidden" id="permissions" value="0"></input> -<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"></input> +<input type="hidden" id="permissions" value="0"> +<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"> <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir"> <table id="filestable"> |