Skip to content
Snippets Groups Projects
Commit 9b22e61a authored by Tim Steiner's avatar Tim Steiner
Browse files

Missed a call to _saveFileToDisk() that needs to use the new return value.

parent 372c3bdb
No related branches found
No related tags found
No related merge requests found
...@@ -684,7 +684,7 @@ class Requests_RequestModel extends Unl_Model ...@@ -684,7 +684,7 @@ class Requests_RequestModel extends Unl_Model
if (!$file['data']) { if (!$file['data']) {
continue; continue;
} }
self::_saveFileToDisk($file['data']); $file['hash'] = self::_saveFileToDisk($file['data']);
$file['data'] = ''; $file['data'] = '';
} }
return array_keys(get_object_vars($this)); return array_keys(get_object_vars($this));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment