Fix Folder ID for file references

This commit is contained in:
johnnyq 2023-12-18 14:54:49 -05:00
parent 7894efedf0
commit 77b431cb61
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ $document_parent = intval($row['document_parent']);
while ($row = mysqli_fetch_array($sql_files)) {
$file_id = intval($row['file_id']);
$folder_id = intval($row['folder_id']);
$folder_id = intval($row['file_folder_id']);
$file_name = nullable_htmlentities($row['file_name']);
$linked_files[] = $file_id;