diff options
Diffstat (limited to 'application/service')
-rw-r--r-- | application/service/files.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/application/service/files.php b/application/service/files.php index 3cdb1ff22..a98e0873f 100644 --- a/application/service/files.php +++ b/application/service/files.php @@ -150,6 +150,7 @@ class files { $hash = md5_file($new_file); $storage_id = null; + $CI->db->trans_start(); $query = $CI->db->select('id, hash') ->from('file_storage') ->where('hash', $hash) @@ -203,6 +204,7 @@ class files { } $CI->mfile->add_file($userid, $id, $filename, $storage_id); + $CI->db->trans_complete(); } static public function verify_uploaded_files($files) |