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
Inside the ci_core_helper.php the files function has a bug when called
// example when calling it in a controller $avatar = files('avatar');
if ( ! function_exists('files')) { /** * function to get $_FILES values * * @param string $index * @return array|string */ function files($index = '') { if ($index !== '') { return $_FILES[$index]; } return $_FILES; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Inside the ci_core_helper.php the files function has a bug when called
The text was updated successfully, but these errors were encountered: