diff options
Diffstat (limited to 'core/controllers')
-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) { |