diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-02-22 11:19:11 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-02-22 11:19:11 +0100 |
commit | 45dc72c54b858a565e5b1a434594f3acc15843bc (patch) | |
tree | 7ffbf527bb5784644cb2657d0eed26f2d03e6bc5 /application/service/files.php | |
parent | c6208bd2271fa02662c4b106c61ca712b46499e5 (diff) |
s\files: rename add_file to add_uploaded_file
It doesn't add any file so it should have that name.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/service/files.php')
-rw-r--r-- | application/service/files.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/service/files.php b/application/service/files.php index ed0d3ec7e..e12e636be 100644 --- a/application/service/files.php +++ b/application/service/files.php @@ -81,7 +81,7 @@ class files { )); } - static public function add_file($id, $file, $filename) + static public function add_uploaded_file($id, $file, $filename) { self::add_file_callback($id, $filename, array( "hash" => function() use ($file) { |