diff options
Diffstat (limited to 'application/models')
-rw-r--r-- | application/models/mfile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/models/mfile.php b/application/models/mfile.php index 4b14f1bf5..977240c89 100644 --- a/application/models/mfile.php +++ b/application/models/mfile.php @@ -246,7 +246,7 @@ class Mfile extends CI_Model { public function delete_data_id($data_id) { list ($hash, $storage_id) = explode("-", $data_id); - + $this->db->where('id', $storage_id) ->delete('file_storage'); if (file_exists($this->file($data_id))) { |