]> git.mxchange.org Git - friendica.git/commitdiff
fix check for parent of StatusNet API post
authorZach Prezkuta <fermion@gmx.com>
Sun, 17 Jun 2012 03:41:23 +0000 (21:41 -0600)
committerZach Prezkuta <fermion@gmx.com>
Mon, 25 Jun 2012 14:26:12 +0000 (08:26 -0600)
include/api.php
include/onepoll.php
mod/item.php

index b77156dfaefbe6ea319f827dedbcb717cc126977..cee1fde23bfd1c94869df0cfbeaa175e3b1e61f8 100644 (file)
                if(requestdata('lat') && requestdata('long'))
                        $_REQUEST['coord'] = sprintf("%s %s",requestdata('lat'),requestdata('long'));
                $_REQUEST['profile_uid'] = local_user();
-               if(requestdata('parent'))
+//             if(requestdata('parent'))
+               if($parent)
                        $_REQUEST['type'] = 'net-comment';
                else {
                        $_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
index d68f268837d1aac2147b8dfc69cc22a214aab705..09e7bb7638d85885f1f64ab87984f2ac0abb455f 100644 (file)
@@ -449,7 +449,7 @@ function onepoll_run($argv, $argc){
 
        if($xml) {
                logger('poller: received xml : ' . $xml, LOGGER_DATA);
-                       if((! strstr($xml,'<?xml')) && (! strstr($xml,'<rss'))) {
+               if((! strstr($xml,'<?xml')) && (! strstr($xml,'<rss'))) {
                        logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
                        $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
                                dbesc(datetime_convert()),
index c1c0b14ec6cd507acb1f51f43857e0755f949c8c..54f9fc06aaf5d5a87aa862fd7794e629960d953f 100644 (file)
@@ -108,7 +108,7 @@ function item_post(&$a) {
                }
        }
 
-       if($parent) logger('mod_post: parent=' . $parent);
+       if($parent) logger('mod_item: item_post parent=' . $parent);
 
        $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0);
        $post_id     = ((x($_REQUEST,'post_id'))     ? intval($_REQUEST['post_id'])     : 0);