diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-09 00:02:29 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-09 00:02:29 +0000 |
commit | f841d1a764c4aa6aa6d2a58daa401be615f4e873 (patch) | |
tree | eac1b6d3c4325d926f06e036a337746d03edb9fc /modules/blogapi/blogapi.module | |
parent | 72e09d7beb7788a3a1f473c0d7a7a4802a5dc75a (diff) | |
download | brdo-f841d1a764c4aa6aa6d2a58daa401be615f4e873.tar.gz brdo-f841d1a764c4aa6aa6d2a58daa401be615f4e873.tar.bz2 |
#142995 by dopry, drewish, quicksketch, jpetso, and flobruit: Adding hook_file_X(). This is an enabler of lots and lots of goodies. See CHANGELOG.txt for more. Awesome work, guys. :)
Diffstat (limited to 'modules/blogapi/blogapi.module')
-rw-r--r-- | modules/blogapi/blogapi.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index 9633c3816..99c1bb43e 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -385,7 +385,7 @@ function blogapi_metaweblog_new_media_object($blogid, $username, $password, $fil return blogapi_error(t('No file sent.')); } - if (!$filepath = file_save_data($data, $name)) { + if (!$filepath = file_unmanaged_save_data($data, $name)) { return blogapi_error(t('Error storing file.')); } |