diff options
author | friendica <redmatrix@redmatrix.me> | 2015-04-18 17:40:44 -0700 |
---|---|---|
committer | friendica <redmatrix@redmatrix.me> | 2015-04-18 17:40:44 -0700 |
commit | 0883512e30af10ea7ed0f461afc8236a828e7d2b (patch) | |
tree | f8935a8593c0e82606c5eb26058533329eb5b63c /include/api.php | |
parent | 11b7fedd294205de79ec6bf66c8f5276510fc63b (diff) | |
download | volse-hubzilla-0883512e30af10ea7ed0f461afc8236a828e7d2b.tar.gz volse-hubzilla-0883512e30af10ea7ed0f461afc8236a828e7d2b.tar.bz2 volse-hubzilla-0883512e30af10ea7ed0f461afc8236a828e7d2b.zip |
log this since we may need it to track down failures
Diffstat (limited to 'include/api.php')
-rw-r--r-- | include/api.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/api.php b/include/api.php index c2687f3e4..e4b28bc54 100644 --- a/include/api.php +++ b/include/api.php @@ -667,6 +667,7 @@ require_once('include/items.php'); $a->argv[1] = $user_info['screen_name']; $_REQUEST['silent']='1'; //tell wall_upload function to return img info instead of echo + $_FILES['userfile'] = $_FILES['media']; require_once('mod/wall_attach.php'); $posted = wall_attach_post($a); @@ -755,8 +756,8 @@ require_once('include/items.php'); $_FILES['userfile'] = $_FILES['media']; // upload the image if we have one $_REQUEST['silent']='1'; //tell wall_upload function to return img info instead of echo - require_once('mod/wall_upload.php'); - $media = wall_upload_post($a); + require_once('mod/wall_attach.php'); + $media = wall_attach_post($a); if(strlen($media)>0) $_REQUEST['body'] .= "\n\n".$media; } |