diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-07-17 11:08:46 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-07-17 11:08:46 +0000 |
commit | b81fd34ca453f252ba025c560fa180cf2a68e8fb (patch) | |
tree | 7442456f73d1c06c92087e539b78467c858d2a78 /lib | |
parent | 0d1da079939a3943a410b04443014fb5fc4806f1 (diff) | |
download | elgg-b81fd34ca453f252ba025c560fa180cf2a68e8fb.tar.gz elgg-b81fd34ca453f252ba025c560fa180cf2a68e8fb.tar.bz2 |
where did that string parameter come from? - fixed now
Diffstat (limited to 'lib')
-rw-r--r-- | lib/exif.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exif.php b/lib/exif.php index 5343044ea..81f5dd960 100644 --- a/lib/exif.php +++ b/lib/exif.php @@ -12,7 +12,7 @@ function td_get_exif($file) { $filename = $file->getFilenameOnFilestore(); $exif = exif_read_data($filename); - create_metadata($file->getGUID(), "tp_exif", serialize($exif), "string", $file->getObjectOwnerGUID(), ACCESS_PUBLIC); + create_metadata($file->getGUID(), "tp_exif", serialize($exif), "text", $file->getObjectOwnerGUID(), ACCESS_PUBLIC); } function tp_exif_formatted($file_guid) { |