diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-02-14 22:25:36 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-02-14 22:25:36 +0000 |
commit | 410aabf12470f42cd53fff671d826104d64c5338 (patch) | |
tree | 94a3bbe5738a9b8aa6b4baac8abb85564be56036 /modules/exif/helpers | |
parent | 2ee995fcc7e3a8550417a3c78d562d7187497475 (diff) |
exif_data -> exif_keys
This was breaking delete.
Diffstat (limited to 'modules/exif/helpers')
-rw-r--r-- | modules/exif/helpers/exif_event.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/exif/helpers/exif_event.php b/modules/exif/helpers/exif_event.php index 665f8c10..ac627b11 100644 --- a/modules/exif/helpers/exif_event.php +++ b/modules/exif/helpers/exif_event.php @@ -23,7 +23,7 @@ class exif_event_Core { } static function item_before_delete($item) { - ORM::factory("exif_data") + ORM::factory("exif_key") ->where("item_id", $item->id) ->delete_all(); } |