- 🇦🇺Australia mstrelan
With the imminent EOL of Drupal 7 I am closing issues that no longer apply to recent versions.
This is fixed in 🐛 Deletion does not check if pdf preview file actually exists Fixed .
Deleting files has no file existence checks at all, giving error messages for all files not handled by the module. It should be changed to:
/**
* Implements hook_file_delete()
*/
function pdfpreview_file_delete($file) {
$preview = _pdfpreview_output_filename($file);
if (file_exists($preview)) {
file_unmanaged_delete();
}
}
Closed: outdated
2.1
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
With the imminent EOL of Drupal 7 I am closing issues that no longer apply to recent versions.
This is fixed in 🐛 Deletion does not check if pdf preview file actually exists Fixed .