diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-08-03 22:53:47 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-08-03 22:53:47 -0600 |
commit | 9a55eb4df8346f9a81fbd4a1fb4daa7b807e80e0 (patch) | |
tree | 0dbcccfadb25d5f08e0e73572c3d0d638271b20b /modules/gallery/controllers/quick.php | |
parent | 9104fa7b55d4613792208956bbd0098bd89b033c (diff) | |
parent | ad19e29c469295189a2d13772706e39e3bd3dfc7 (diff) |
Merge branch 'master' of git://github.com/bharat/gallery3
Diffstat (limited to 'modules/gallery/controllers/quick.php')
-rw-r--r-- | modules/gallery/controllers/quick.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/gallery/controllers/quick.php b/modules/gallery/controllers/quick.php index de027c1b..82176e02 100644 --- a/modules/gallery/controllers/quick.php +++ b/modules/gallery/controllers/quick.php @@ -18,20 +18,6 @@ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ class Quick_Controller extends Controller { - public function pane($id) { - $item = model_cache::get("item", $id); - if (!access::can("view", $item) || !access::can("edit", $item)) { - return ""; - } - - $view = new View("quick_pane.html"); - $page_type = Input::instance()->get("page_type"); - $view->button_list = gallery_quick::get_quick_buttons($item, $page_type); - $view->item = $item; - $view->page_type = $page_type; - print $view; - } - public function rotate($id, $dir) { access::verify_csrf(); $item = model_cache::get("item", $id); |