diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-12 00:52:44 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-12 00:52:44 +0000 |
commit | fbfa2336f931ba9f024648dd181be368672ba7f6 (patch) | |
tree | 4d75158d8b6e7911d1d49a9aa3805042c17e337b /modules/exif/controllers/exif.php | |
parent | 37a1cca520536ba52b14069b1efb4871d47e44de (diff) |
Bag the whole idea of a tab widget containing summary and detail
information and just go straight to the detail.
Diffstat (limited to 'modules/exif/controllers/exif.php')
-rw-r--r-- | modules/exif/controllers/exif.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/exif/controllers/exif.php b/modules/exif/controllers/exif.php index ca2e4cab..88e4a8b0 100644 --- a/modules/exif/controllers/exif.php +++ b/modules/exif/controllers/exif.php @@ -26,7 +26,7 @@ class Exif_Controller extends Controller { access::required("view", $item); $view = new View("exif_dialog.html"); - $view->details = array("summary" => exif::get($item), "detail" => exif::get($item, false)); + $view->details = exif::get($item, false); print $view; } |