diff --git a/classes/FileItem.php b/classes/FileItem.php
index 5da80ac..bec479b 100644
--- a/classes/FileItem.php
+++ b/classes/FileItem.php
@@ -323,14 +323,14 @@ class FileItem extends Item
{
$icon_pdf = ICON_PATH ? Url::translate_uri($config->__get('icon_path') . 'pdf.png') : Url::translate_uri($this->parent_dir . $filename);
$heightwidth = in_array(self::ext($filename), array('pdf', 'PDF')) ? ' height="' . '150' . '" width="' . '150' . '" ' : ' ';
- $this->thumb_link .= '
';
+
+ $this->thumb_link .= '
';
$date = array();
$stringedPDF = $contentpdf = $creationdate = $str_time = $creation_time = $time = false;
- $pfdcontent = file_get_contents(Url::translate_uri($this->parent_dir . $filename));
+ $pfdcontent = file_get_contents(Url::html_output($this->parent_dir . $filename));
if (preg_match('/CreationDate\\s*\\(D:([0-9]{14})/', $pfdcontent, $date))
{
$creation_time = $date[1]; //echo(' date: ' . $creation_time); //date format: YYYYMMDDHHMMSS 2025 03 30 - 09 44 53