summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/views/quick_pane.html.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/core/views/quick_pane.html.php b/core/views/quick_pane.html.php
index 744575fc..d99d27f5 100644
--- a/core/views/quick_pane.html.php
+++ b/core/views/quick_pane.html.php
@@ -7,18 +7,19 @@
</a>
<? if ($item->is_photo() && graphics::can("rotate")): ?>
-<a class="clockwise" href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>"
- title="<?= t("Rotate 90 degrees clockwise") ?>">
- <span>
- <?= t("Rotate 90 degrees clockwise") ?>
- </span>
-</a>
<a class="counter-clockwise" href="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>"
title="<?= t("Rotate 90 degrees counter clockwise") ?>">
<span>
<?= t("Rotate 90 degrees counter clockwise") ?>
</span>
</a>
+
+<a class="clockwise" href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>"
+ title="<?= t("Rotate 90 degrees clockwise") ?>">
+ <span>
+ <?= t("Rotate 90 degrees clockwise") ?>
+ </span>
+</a>
<? endif ?>
<a class="move gDialogLink" href="<?= url::site("move/browse/$item->id") ?>"