Fix a bug where the wrong file name was saved as the original name.
This commit is contained in:
parent
c642fcf81d
commit
035ed81542
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class Upload extends CI_Controller {
|
||||||
$upload = $this->upload->data();
|
$upload = $this->upload->data();
|
||||||
|
|
||||||
$this->load->model('fileupload');
|
$this->load->model('fileupload');
|
||||||
$file_name = $this->fileupload->add_upload($upload['file_ext'], $upload['orig_name']);
|
$file_name = $this->fileupload->add_upload($upload['file_ext'], $upload['client_name']);
|
||||||
|
|
||||||
rename($upload['full_path'], $upload['file_path'] . $file_name . $upload['file_ext']);
|
rename($upload['full_path'], $upload['file_path'] . $file_name . $upload['file_ext']);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue