diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-06 03:47:36 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-06 03:47:36 +0000 |
| commit | 80d4df3a4a6fefcf69de5245934b4b0bfc0f8e20 (patch) | |
| tree | 7035bf37330fabce2996f6a867c77ea00295b216 /core/views/quick_pane.html.php | |
| parent | 196ef392ab1dc32154ec8dbe49340d4aefb0d082 (diff) | |
Convert all item->type == "album" to item->is_album()
Convert all item->type == "photo" to item->is_photo()
Diffstat (limited to 'core/views/quick_pane.html.php')
| -rw-r--r-- | core/views/quick_pane.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/quick_pane.html.php b/core/views/quick_pane.html.php index 78a6c1ce..b5f40d94 100644 --- a/core/views/quick_pane.html.php +++ b/core/views/quick_pane.html.php @@ -6,7 +6,7 @@ </span> </a> -<? if ($item->type == "photo" && graphics::can("rotate")): ?> +<? if ($item->is_album() && 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> |
