diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-20 07:11:14 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-20 07:11:14 +0000 |
commit | 3ba056d7145ad20ed278256c10033bcb4b1a97c1 (patch) | |
tree | 1c01aa518b5714f858fb947da3f970ea7825241c /core/controllers/quick.php | |
parent | 8384cac5e3f300c5ca13b0bf5a9c689c0b4202e9 (diff) |
Add a quick edit pane for albums, too.
Diffstat (limited to 'core/controllers/quick.php')
-rw-r--r-- | core/controllers/quick.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/core/controllers/quick.php b/core/controllers/quick.php index 3f3c1f0c..e382a444 100644 --- a/core/controllers/quick.php +++ b/core/controllers/quick.php @@ -24,11 +24,9 @@ class Quick_Controller extends Controller { return ""; } - if ($item->type == "photo") { - $view = new View("quick_pane.html"); - $view->item = $item; - print $view; - } + $view = new View("quick_pane.html"); + $view->item = $item; + print $view; } public function rotate($id, $dir) { |