summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/quick.php
diff options
context:
space:
mode:
authorChad Kieffer <ckieffer@gmail.com>2009-06-24 17:49:06 -0600
committerChad Kieffer <ckieffer@gmail.com>2009-06-24 17:49:06 -0600
commit043469587ed03a2a4e05aa2fddcebe53f04b0ce4 (patch)
tree231d14b25d3dc99ae3ba29634b89b38c76ef359e /modules/gallery/controllers/quick.php
parentc37fc39152ceeb5f4d51f9b297b313847bb445e5 (diff)
parentf56d372629df5b08a30d0182d4e1e7c97a44d79f (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/controllers/quick.php')
-rw-r--r--modules/gallery/controllers/quick.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gallery/controllers/quick.php b/modules/gallery/controllers/quick.php
index 6203728c..e89d9701 100644
--- a/modules/gallery/controllers/quick.php
+++ b/modules/gallery/controllers/quick.php
@@ -25,10 +25,10 @@ class Quick_Controller extends Controller {
}
$view = new View("quick_pane.html");
- $view->button_list =
- gallery_quick::get_quick_buttons($item, Input::instance()->get("page_type"));
+ $page_type = Input::instance()->get("page_type");
+ $view->button_list = gallery_quick::get_quick_buttons($item, $page_type);
$view->item = $item;
- $view->page_type = Input::instance()->get("page_type");
+ $view->page_type = $page_type;
print $view;
}