diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-02-24 05:54:19 +0000 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-02-24 05:54:19 +0000 |
commit | e0319573542293c661c263de30547eeb9c2b7ede (patch) | |
tree | 19383ba068aacd48b3587be144aff3dd2da11c92 /modules/exif/helpers | |
parent | 41600a982f566cf47c240fd5c4b46096983d2b7e (diff) |
File structure style fixes
Diffstat (limited to 'modules/exif/helpers')
-rw-r--r-- | modules/exif/helpers/exif.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/exif/helpers/exif.php b/modules/exif/helpers/exif.php index 55877140..50a772b5 100644 --- a/modules/exif/helpers/exif.php +++ b/modules/exif/helpers/exif.php @@ -25,7 +25,7 @@ class exif_Core { protected static $exif_keys; - public static function extract($item) { + static function extract($item) { ORM::factory("exif_key")->where("item_id", $item->id)->delete_all(); // Only try to extract EXIF from photos @@ -68,7 +68,7 @@ class exif_Core { $record->save(); } - public static function get($item, $summary=true) { + static function get($item, $summary=true) { $exif = array(); $exif_key = ORM::factory("exif_key") ->where("item_id", $item->id); |