made change to allow all file types for uploads
This commit is contained in:
parent
04bf20fd75
commit
d47c681629
@ -289,7 +289,8 @@ class File extends Controller
|
|||||||
$_FILES['file_name']['type'] =
|
$_FILES['file_name']['type'] =
|
||||||
str_replace('\\', '', $_FILES['file_name']['type']);
|
str_replace('\\', '', $_FILES['file_name']['type']);
|
||||||
|
|
||||||
$config['allowed_types'] = $ext;
|
//$config['allowed_types'] = $ext;
|
||||||
|
$config['allowed_types'] = '*';
|
||||||
$config['upload_path'] = CODEPOT_FILE_DIR;
|
$config['upload_path'] = CODEPOT_FILE_DIR;
|
||||||
$config['max_size'] = CODEPOT_MAX_UPLOAD_SIZE;
|
$config['max_size'] = CODEPOT_MAX_UPLOAD_SIZE;
|
||||||
$config['encrypt_name'] = TRUE;
|
$config['encrypt_name'] = TRUE;
|
||||||
|
@ -643,7 +643,8 @@ class Wiki extends Controller
|
|||||||
$_FILES[$field_name]['type'] =
|
$_FILES[$field_name]['type'] =
|
||||||
str_replace('\\', '', $_FILES[$field_name]['type']);
|
str_replace('\\', '', $_FILES[$field_name]['type']);
|
||||||
|
|
||||||
$config['allowed_types'] = $ext;
|
//$config['allowed_types'] = $ext;
|
||||||
|
$config['allowed_types'] = '*';
|
||||||
$config['upload_path'] = CODEPOT_ATTACHMENT_DIR;
|
$config['upload_path'] = CODEPOT_ATTACHMENT_DIR;
|
||||||
$config['max_size'] = CODEPOT_MAX_UPLOAD_SIZE;
|
$config['max_size'] = CODEPOT_MAX_UPLOAD_SIZE;
|
||||||
$config['encrypt_name'] = TRUE;
|
$config['encrypt_name'] = TRUE;
|
||||||
|
@ -578,6 +578,11 @@ class CI_Upload {
|
|||||||
$this->set_error('upload_no_file_types');
|
$this->set_error('upload_no_file_types');
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($this->allowed_types[0] == '*')
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
$ext = strtolower(ltrim($this->file_ext, '.'));
|
$ext = strtolower(ltrim($this->file_ext, '.'));
|
||||||
|
|
||||||
@ -967,4 +972,4 @@ class CI_Upload {
|
|||||||
// END Upload Class
|
// END Upload Class
|
||||||
|
|
||||||
/* End of file Upload.php */
|
/* End of file Upload.php */
|
||||||
/* Location: ./system/libraries/Upload.php */
|
/* Location: ./system/libraries/Upload.php */
|
||||||
|
Loading…
Reference in New Issue
Block a user