summaryrefslogtreecommitdiff
path: root/modules/exif/controllers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-04-05 03:54:08 +0000
committerBharat Mediratta <bharat@menalto.com>2009-04-05 03:54:08 +0000
commit846fc51f612997efbee1e5a0d05b773b5a4c7f73 (patch)
tree620b6f7ef37fb408183b7e4f26ad386b7dc7d191 /modules/exif/controllers
parent7d712ecd9629de7f15f79a175fd95866e75645ac (diff)
Optimization: add all exif/iptc keys in a single insert, instead of
many separate queries. In the process, rip out the summary column, we weren't using it. Clean up the test, and drop the exif_records database on uninstall.
Diffstat (limited to 'modules/exif/controllers')
-rw-r--r--modules/exif/controllers/exif.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/exif/controllers/exif.php b/modules/exif/controllers/exif.php
index d46d6083..70f82ad6 100644
--- a/modules/exif/controllers/exif.php
+++ b/modules/exif/controllers/exif.php
@@ -26,8 +26,8 @@ class Exif_Controller extends Controller {
access::required("view", $item);
$view = new View("exif_dialog.html");
- $view->details = exif::get($item, false);
-
+ $view->details = exif::get($item);
+
print $view;
}
}