diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-07-14 08:10:28 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-07-14 08:10:28 -0400 |
commit | 4761adf8eee9feadd77599682ef192b56520d11d (patch) | |
tree | 022a921d20ddd26fb226351cadedf9a8dfe9e971 /lib/exif.php | |
parent | 4448f072dc6149a62b602e60e766fd00c2b6af89 (diff) | |
parent | c1da32e6a7e2f4a15a3b2d69cd38a1c0c164a99d (diff) | |
download | elgg-4761adf8eee9feadd77599682ef192b56520d11d.tar.gz elgg-4761adf8eee9feadd77599682ef192b56520d11d.tar.bz2 |
Pulling in several small fixes from Brett's fork
Diffstat (limited to 'lib/exif.php')
-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 55612a433..43a640336 100644 --- a/lib/exif.php +++ b/lib/exif.php @@ -24,7 +24,7 @@ function td_get_exif($file) { $filename = $file->getFilenameOnFilestore(); $exif = exif_read_data($filename); - create_metadata($file->getGUID(), "tp_exif", serialize($exif), "text", $file->getObjectOwnerGUID(), ACCESS_PUBLIC); + create_metadata($file->getGUID(), "tp_exif", serialize($exif), "text", $file->getOwnerGUID(), ACCESS_PUBLIC); } /** |