diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-15 17:58:37 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-15 17:58:37 +0000 |
commit | 7f3aad92a12d104b7a74232499ef423edb9743f8 (patch) | |
tree | b1a5e4a833388218375c872a56306bbe25d16481 /phpfspot.class.php | |
parent | 8b2b9d9fada346e9aa85dd75cb832ac66e959fbd (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.php | 2 |
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; |