|
@@ -90,9 +90,6 @@ class Photo extends Module {
|
|
# Read infos
|
|
# Read infos
|
|
$info = $this->getInfo($path);
|
|
$info = $this->getInfo($path);
|
|
|
|
|
|
- # Set original date
|
|
|
|
- if ($info['takestamp']!=='') @touch($path, $info['takestamp']);
|
|
|
|
-
|
|
|
|
# Use title of file if IPTC title missing
|
|
# 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));
|
|
if ($info['title']==='') $info['title'] = mysqli_real_escape_string($this->database, substr(basename($file['name'], ".$extension"), 0, 30));
|
|
|
|
|
|
@@ -104,6 +101,9 @@ class Photo extends Module {
|
|
if (!$this->adjustFile($path, $info)) exit('Error: Could not adjust photo!');
|
|
if (!$this->adjustFile($path, $info)) exit('Error: Could not adjust photo!');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ # Set original date
|
|
|
|
+ if ($info['takestamp']!=='') @touch($path, $info['takestamp']);
|
|
|
|
+
|
|
# Create Thumb
|
|
# Create Thumb
|
|
if (!$this->createThumb($path, $photo_name)) exit('Error: Could not create thumbnail for photo!');
|
|
if (!$this->createThumb($path, $photo_name)) exit('Error: Could not create thumbnail for photo!');
|
|
|
|
|