aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-07-26 22:34:27 +0200
committerGitHub <noreply@github.com>2022-07-26 22:34:27 +0200
commitac4e60e6f43125dc2adc2545ba426d74a62b9ed0 (patch)
treeea76e8c2b67716802b47d7c5726e64530271c972 /apps
parent5671abd168b58348859acf068c25313992dfaa0b (diff)
parentb896cd7f01f6fc6ddcaba2685d9f5fce4e7163f8 (diff)
downloadnextcloud-server-ac4e60e6f43125dc2adc2545ba426d74a62b9ed0.tar.gz
nextcloud-server-ac4e60e6f43125dc2adc2545ba426d74a62b9ed0.zip
Merge pull request #33361 from nextcloud/techdebt/noid/further-cleanup
Further markup cleanup
Diffstat (limited to 'apps')
-rw-r--r--apps/files/templates/recentlist.php2
-rw-r--r--apps/files/templates/simplelist.php2
-rw-r--r--apps/files_sharing/tests/js/publicAppSpec.js1
-rw-r--r--apps/files_trashbin/templates/index.php4
-rw-r--r--apps/systemtags/templates/list.php2
-rw-r--r--apps/systemtags/tests/js/systemtagsfilelistSpec.js2
6 files changed, 7 insertions, 6 deletions
diff --git a/apps/files/templates/recentlist.php b/apps/files/templates/recentlist.php
index 389b01098a6..925201e5df6 100644
--- a/apps/files/templates/recentlist.php
+++ b/apps/files/templates/recentlist.php
@@ -24,7 +24,7 @@
data-sort="size"><span><?php p($l->t('Size')); ?></span></a>
</th>
<th class="hidden column-mtime">
- <a id="modified" class="columntitle" href="#" onclick="event.preventDefault()"
+ <a class="columntitle" href="#" onclick="event.preventDefault()"
data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span
class="sort-indicator"></span></a>
<span class="selectedActions">
diff --git a/apps/files/templates/simplelist.php b/apps/files/templates/simplelist.php
index 599a9f4a136..9e67d4cd0b2 100644
--- a/apps/files/templates/simplelist.php
+++ b/apps/files/templates/simplelist.php
@@ -23,7 +23,7 @@
<a class="size sort columntitle" onclick="event.preventDefault()" href="#" data-sort="size"><span><?php p($l->t('Size')); ?></span><span class="sort-indicator"></span></a>
</th>
<th class="hidden column-mtime">
- <a id="modified" class="columntitle" onclick="event.preventDefault()" href="#" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a>
+ <a class="columntitle" onclick="event.preventDefault()" href="#" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a>
<span class="selectedActions">
<a onclick="event.preventDefault()" href="#" class="delete-selected">
<img class="svg" alt=""
diff --git a/apps/files_sharing/tests/js/publicAppSpec.js b/apps/files_sharing/tests/js/publicAppSpec.js
index b9d8cbe28e2..e8e5f0a5109 100644
--- a/apps/files_sharing/tests/js/publicAppSpec.js
+++ b/apps/files_sharing/tests/js/publicAppSpec.js
@@ -74,6 +74,7 @@ describe('OCA.Sharing.PublicApp tests', function() {
'<a class="name columntitle" data-sort="name"><span>Name</span><span class="sort-indicator"></span></a>' +
'<span class="selectedActions hidden">' +
'<a href class="download">Download</a>' +
+ '</span>' +
'</th>' +
'<th class="hidden column-size"><a class="columntitle" data-sort="size"><span class="sort-indicator"></span></a></th>' +
'<th class="hidden column-mtime"><a class="columntitle" data-sort="mtime"><span class="sort-indicator"></span></a></th>' +
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php
index cfeded586f7..441768288fe 100644
--- a/apps/files_trashbin/templates/index.php
+++ b/apps/files_trashbin/templates/index.php
@@ -30,7 +30,7 @@
<div class="column-name-container">
<a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a>
<span class='selectedActions'>
- <a href="" class="actions-selected">
+ <a href="#" class="actions-selected">
<span class="icon icon-more"></span>
<span><?php p($l->t('Actions'))?></span>
</a>
@@ -38,7 +38,7 @@
</div>
</th>
<th class="hidden column-mtime">
- <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t('Deleted')); ?></span><span class="sort-indicator"></span></a>
+ <a class="columntitle" data-sort="mtime"><span><?php p($l->t('Deleted')); ?></span><span class="sort-indicator"></span></a>
</th>
</tr>
</thead>
diff --git a/apps/systemtags/templates/list.php b/apps/systemtags/templates/list.php
index cea67413327..b6298ef2d23 100644
--- a/apps/systemtags/templates/list.php
+++ b/apps/systemtags/templates/list.php
@@ -25,7 +25,7 @@
<a class="size sort columntitle" data-sort="size"><span><?php p($l->t('Size')); ?></span><span class="sort-indicator"></span></a>
</th>
<th class="hidden column-mtime">
- <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a>
+ <a class="columntitle" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a>
</th>
</tr>
</thead>
diff --git a/apps/systemtags/tests/js/systemtagsfilelistSpec.js b/apps/systemtags/tests/js/systemtagsfilelistSpec.js
index 068eb0cbf5c..66272320e1d 100644
--- a/apps/systemtags/tests/js/systemtagsfilelistSpec.js
+++ b/apps/systemtags/tests/js/systemtagsfilelistSpec.js
@@ -40,7 +40,7 @@ describe('OCA.SystemTags.FileList tests', function() {
'<th class="hidden column-name">' +
'<input type="checkbox" id="select_all_files" class="select-all">' +
'<a class="name columntitle" data-sort="name"><span>Name</span><span class="sort-indicator"></span></a>' +
- '<span class="selectedActions hidden">' +
+ '<span class="selectedActions hidden"></span>' +
'</th>' +
'<th class="hidden column-mtime">' +
'<a class="columntitle" data-sort="mtime"><span class="sort-indicator"></span></a>' +