made change to allow all file types for uploads

This commit is contained in:
2011-12-21 16:37:19 +00:00
parent 04bf20fd75
commit d47c681629
3 changed files with 10 additions and 3 deletions

View File

@ -578,6 +578,11 @@ class CI_Upload {
$this->set_error('upload_no_file_types');
return FALSE;
}
if($this->allowed_types[0] == '*')
{
return true;
}
$ext = strtolower(ltrim($this->file_ext, '.'));
@ -967,4 +972,4 @@ class CI_Upload {
// END Upload Class
/* End of file Upload.php */
/* Location: ./system/libraries/Upload.php */
/* Location: ./system/libraries/Upload.php */