mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-09 13:06:14 +00:00
check if attachment could be imported
This commit is contained in:
parent
9d37187e43
commit
59309b7db8
|
@ -811,11 +811,11 @@ function insert_document($document) { /* {{{ */
|
||||||
$file['attributes']['version'],
|
$file['attributes']['version'],
|
||||||
$file['attributes']['public']
|
$file['attributes']['public']
|
||||||
);
|
);
|
||||||
$d = dateToTimestamp($file['attributes']['date']);
|
if($newfile) {
|
||||||
if($d)
|
$newfile->setDate(dateToTimestamp($file['attributes']['date']));
|
||||||
$newfile->setDate($d);
|
} else {
|
||||||
else
|
$logger->error("File ".$file['attributes']['name']." could not be added.");
|
||||||
$logger->warning("File date (".$file['attributes']['date'].") could not be parsed.");
|
}
|
||||||
unlink($filename);
|
unlink($filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user