Browse Source

Use IPTC Title when Headline not available (#216)

Tobias Reich 9 years ago
parent
commit
f302f65cd7
1 changed files with 3 additions and 0 deletions
  1. 3 0
      php/modules/Photo.php

+ 3 - 0
php/modules/Photo.php

@@ -528,6 +528,9 @@ class Photo extends Module {
 				$temp = @$iptcInfo['2#120'][0];
 				if (isset($temp)&&strlen($temp)>0) $return['description'] = $temp;
 
+				$temp = @$iptcInfo['2#005'][0];
+				if (isset($temp)&&strlen($temp)>0&&$return['title']==='') $return['title'] = $temp;
+
 			}
 
 		}