diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-12 16:14:52 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-12 16:14:52 +0000 |
commit | fc08012e5d2111c7df88f0bb4660d1e20f57b355 (patch) | |
tree | 58060cc115f2ee62761801cb79d7aefafe521350 /modules/exif/helpers/exif.php | |
parent | 2df75c11fb5ef139148bc536b2d3459e7002749f (diff) |
Add a maintenace task to extract the EXIF data from images
Changed exif to EXIF in comments
Diffstat (limited to 'modules/exif/helpers/exif.php')
-rw-r--r-- | modules/exif/helpers/exif.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/exif/helpers/exif.php b/modules/exif/helpers/exif.php index 61084b15..ee128353 100644 --- a/modules/exif/helpers/exif.php +++ b/modules/exif/helpers/exif.php @@ -26,7 +26,7 @@ class exif_Core { protected static $exif_keys; public static function extract($item) { - // Only try to extract exif from photos + // Only try to extract EXIF from photos if ($item->is_photo() && $item->mime_type == "image/jpeg") { require_once(MODPATH . "exif/lib/exif.php"); $exif_raw = read_exif_data_raw($item->file_path(), false); |