diff options
Diffstat (limited to 'core/helpers/core_theme.php')
-rw-r--r-- | core/helpers/core_theme.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/helpers/core_theme.php b/core/helpers/core_theme.php index 03018d48..9eb56f0e 100644 --- a/core/helpers/core_theme.php +++ b/core/helpers/core_theme.php @@ -54,7 +54,7 @@ class core_theme_Core { static function resize_top($theme, $item) { if (access::can("edit", $item)) { - $edit_link = url::site("quick/pane/$item->id"); + $edit_link = url::site("quick/pane/$item->id?page_type=photo"); return "<div class=\"gQuick\" href=\"$edit_link\">"; } } @@ -67,7 +67,7 @@ class core_theme_Core { static function thumb_top($theme, $child) { if (access::can("edit", $child)) { - $edit_link = url::site("quick/pane/$child->id"); + $edit_link = url::site("quick/pane/$child->id?page_type=album"); return "<div class=\"gQuick\" href=\"$edit_link\">"; } } |