summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-07-15 17:58:37 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-07-15 17:58:37 +0000
commit7f3aad92a12d104b7a74232499ef423edb9743f8 (patch)
treeb1a5e4a833388218375c872a56306bbe25d16481 /phpfspot.class.php
parent8b2b9d9fada346e9aa85dd75cb832ac66e959fbd (diff)
fixed image taken with text
git-svn-id: file:///var/lib/svn/phpfspot/trunk@214 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 1c1e864..46823e7 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -304,7 +304,7 @@ class PHPFSPOT {
}
$meta_date = isset($meta['FileDateTime']) ? strftime("%a %x %X", $meta['FileDateTime']) : "n/a";
- $meta_make = isset($meta['Make']) ? $meta['Make'] ." ". $meta['Model'] : "n/a";
+ $meta_make = isset($meta['Make']) ? $meta['Make'] ." / ". $meta['Model'] : "n/a";
$meta_size = isset($meta['FileSize']) ? round($meta['FileSize']/1024, 1) ."kbyte" : "n/a";
$extern_link = "index.php?mode=showp&id=". $photo;