summaryrefslogtreecommitdiff
path: root/modules/organize/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2011-01-05 22:19:33 -0800
committerBharat Mediratta <bharat@menalto.com>2011-01-05 22:19:33 -0800
commitaebcd445135648603590e2ab99f40b72ee8ed097 (patch)
tree3fd5eaf17e58aef1d4c5ed96a5c18c0c1538486f /modules/organize/helpers
parente6b3886f8f6a3a526876a80470420501bdb25612 (diff)
Swap organize_frame and organize_dialog since they were semantically
reversed. organize_dialog contains the stuff that pops up in the dialog, organize_frame contains the stuff that's in the embedded iframe.
Diffstat (limited to 'modules/organize/helpers')
-rw-r--r--modules/organize/helpers/organize_event.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/organize/helpers/organize_event.php b/modules/organize/helpers/organize_event.php
index fbe18a7a..2f997600 100644
--- a/modules/organize/helpers/organize_event.php
+++ b/modules/organize/helpers/organize_event.php
@@ -27,7 +27,7 @@ class organize_event_Core {
->id("organize")
->label(t("Organize album"))
->css_id("g-menu-organize-link")
- ->url(url::site("organize/frame/{$item->id}")));
+ ->url(url::site("organize/dialog/{$item->id}")));
}
}
@@ -39,7 +39,7 @@ class organize_event_Core {
->id("organize")
->label(t("Organize album"))
->css_class("ui-icon-folder-open g-organize-link")
- ->url(url::site("organize/frame/{$item->id}")));
+ ->url(url::site("organize/dialog/{$item->id}")));
} else {
$parent = $item->parent();
$menu->get("options_menu")
@@ -47,7 +47,7 @@ class organize_event_Core {
->id("move")
->label(t("Move to another album"))
->css_class("ui-icon-folder-open g-organize-link")
- ->url(url::site("organize/frame/{$parent->id}?selected_id={$item->id}")));
+ ->url(url::site("organize/dialog/{$parent->id}?selected_id={$item->id}")));
}
}
}