Skip to content
Snippets Groups Projects
Commit 3fb6f14a authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#197267 by ufku: fix copy-pasted incorrect documentation on two file functions

parent 80e26c14
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -614,7 +614,7 @@ function file_validate_name_length($file) {
* @param $extensions
* A string with a space separated
* @return
* An array. If the file name is too long, it will contain an error message.
* An array. If the file extension is not allowed, it will contain an error message.
*/
function file_validate_extensions($file, $extensions) {
global $user;
......@@ -644,7 +644,7 @@ function file_validate_extensions($file, $extensions) {
* An integer specifying the maximum number of bytes the user is allowed. Zero
* indicates that no limit should be enforced.
* @return
* An array. If the file name is too long, it will contain an error message.
* An array. If the file size exceeds limits, it will contain an error message.
*/
function file_validate_size($file, $file_limit = 0, $user_limit = 0) {
global $user;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment