We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I found a couple issues with file name, also when extension is set to NULL
'extensions' => null, // null allow any type of file
extensions' => null, // null allow any type of file
The code allow file name like this
Case 1: myfilehasnoextension ***Not so sure how to handle this case has when downloading browser add xml extension if any...
Case 2: myfile.txt space and / characters after the dot I remove space and replacing special characters during the validation
Case 3: myfile'have_apostrophe.txt I'm replacing apostrophe during the validation
I think even if the extension is set to NULL, it should maybe check if there is a dot and some letter after the dot...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I found a couple issues with file name, also when extension is set to NULL
'
extensions' => null, // null allow any type of file
The code allow file name like this
Case 1: myfilehasnoextension
***Not so sure how to handle this case has when downloading browser add xml extension if any...
Case 2: myfile.txt space and / characters after the dot
I remove space and replacing special characters during the validation
Case 3: myfile'have_apostrophe.txt
I'm replacing apostrophe during the validation
I think even if the extension is set to NULL, it should maybe check if there is a dot and some letter after the dot...
The text was updated successfully, but these errors were encountered: