Active
Project:
3D Flipbook
Version:
11.0.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Issue tags:
Reporter:
Created:
29 Jun 2026 at 11:39 UTC
Updated:
6 Jul 2026 at 11:45 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
shivenduray commentedLegacy Syntax (Broken in Drupal 11)
$validators = ['file_validate_extensions' => ['pdf docx']];
$file = file_save_upload('form_field_name', $validators);
Drupal 11 Syntax (Correct)
$validators = [
'FileExtension' => [
'extensions' => 'pdf docx',
],
];
$file = file_save_upload('form_field_name', $validators);
Comment #3
shivenduray commentedPatch for resolve Issue with upload validators