summaryrefslogtreecommitdiff
path: root/modules/exif/helpers/exif.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/exif/helpers/exif.php')
-rw-r--r--modules/exif/helpers/exif.php4
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);