diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-07 16:02:20 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-07 16:02:20 -0700 |
commit | 23739bda0168a9c0f300a47c3c3f153bf3981af1 (patch) | |
tree | cd550935834ccc16591cc0d104243e9d87bf2a86 | |
parent | 95ffb393d3d2af0d18af23a27ce4400b54128197 (diff) |
Move the Remove all completed tasks back out of the th, shouldn't have put it there in the first place.
-rw-r--r-- | modules/gallery/views/admin_maintenance.html.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gallery/views/admin_maintenance.html.php b/modules/gallery/views/admin_maintenance.html.php index 107b35cc..7ad75f85 100644 --- a/modules/gallery/views/admin_maintenance.html.php +++ b/modules/gallery/views/admin_maintenance.html.php @@ -116,6 +116,9 @@ <? if ($finished_tasks->count()): ?> <div id="g-finished-tasks"> + <a href="<?= url::site("admin/maintenance/remove_finished_tasks?csrf=$csrf") ?>" + class="g-button g-right ui-icon-left ui-state-default ui-corner-all"> + <span class="ui-icon ui-icon-trash"></span><?= t("remove all finished") ?></a> <h2> <?= t("Finished tasks") ?> </h2> <table> <tr> @@ -135,9 +138,6 @@ <?= t("Owner") ?> </th> <th> - <a href="<?= url::site("admin/maintenance/remove_finished_tasks?csrf=$csrf") ?>" - class="g-button g-right ui-icon-left ui-state-default ui-corner-all"> - <span class="ui-icon ui-icon-trash"></span><?= t("remove all finished") ?></a> <?= t("Action") ?> </th> </tr> |