Browse Source

Set original date for uploaded file

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

+ 3 - 0
php/modules/Photo.php

@@ -90,6 +90,9 @@ class Photo extends Module {
 			# Read infos
 			$info = $this->getInfo($path);
 
+			# Set original date
+			if ($info['takestamp']!=='') @touch($path, $info['takestamp']);
+
 			# Use title of file if IPTC title missing
 			if ($info['title']==='') $info['title'] = mysqli_real_escape_string($this->database, substr(basename($file['name'], ".$extension"), 0, 30));