diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-08-22 00:27:24 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-08-22 00:27:24 -0700 |
commit | 04add75f6ff7596319b01c635cb62fafacf504cf (patch) | |
tree | 0e356b7ce42214df8aab4b45d5097328bb8169b9 /modules/gallery/helpers/gallery_event.php | |
parent | 91fab0fcf5fb65d9e210abb031a4ddfee31b1f9e (diff) |
Get rid of the move dialog and move option. Instead, replace it with
a call to Organize with the appropriate album open. I have not yet
figured out how to get the SWF code to highlight the active image, but
that's coming. Partial fix for #1204.
Diffstat (limited to 'modules/gallery/helpers/gallery_event.php')
-rw-r--r-- | modules/gallery/helpers/gallery_event.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/gallery/helpers/gallery_event.php b/modules/gallery/helpers/gallery_event.php index e048118b..df5394c9 100644 --- a/modules/gallery/helpers/gallery_event.php +++ b/modules/gallery/helpers/gallery_event.php @@ -447,7 +447,6 @@ class gallery_event_Core { break; } $cover_title = t("Choose as the album cover"); - $move_title = t("Move to another album"); $csrf = access::csrf_token(); @@ -478,17 +477,6 @@ class gallery_event_Core { ->url(url::site("quick/rotate/$item->id/cw?csrf=$csrf&from_id={$theme_item->id}&page_type=$page_type"))); } - // @todo Don't move photos from the photo page; we don't yet have a good way of redirecting - // after move - if ($theme->page_subtype() == "album") { - $options_menu - ->append(Menu::factory("dialog") - ->id("move") - ->label($move_title) - ->css_class("ui-icon-folder-open") - ->url(url::site("move/browse/$item->id"))); - } - $parent = $item->parent(); if (access::can("edit", $parent)) { // We can't make this item the highlight if it's an album with no album cover, or if it's |