]> git.mxchange.org Git - friendica.git/commitdiff
Issue 1228: Pictures aren't sent via API in comments.
authorMichael Vogel <icarus@dabo.de>
Tue, 17 Feb 2015 19:43:11 +0000 (20:43 +0100)
committerMichael Vogel <icarus@dabo.de>
Tue, 17 Feb 2015 19:43:11 +0000 (20:43 +0100)
include/api.php

index c8a313ce198e764187d505ca3d61c6f077001b3e..4d714e583f0d2fb395a47433fb353539c3d38b43 100644 (file)
                                $_REQUEST['body'] = html2bbcode($txt);
                        }
 
-               }
-               else
+               } else
                        $_REQUEST['body'] = requestdata('status');
 
                $_REQUEST['title'] = requestdata('title');
                        }
 
                        $_REQUEST['type'] = 'wall';
-                       if(x($_FILES,'media')) {
-                               // upload the image if we have one
-                               $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo
-                               require_once('mod/wall_upload.php');
-                               $media = wall_upload_post($a);
-                               if(strlen($media)>0)
-                                       $_REQUEST['body'] .= "\n\n".$media;
-                       }
+               }
+
+               if(x($_FILES,'media')) {
+                       // upload the image if we have one
+                       $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo
+                       require_once('mod/wall_upload.php');
+                       $media = wall_upload_post($a);
+                       if(strlen($media)>0)
+                               $_REQUEST['body'] .= "\n\n".$media;
                }
 
                // set this so that the item_post() function is quiet and doesn't redirect or emit json