]> git.mxchange.org Git - friendica.git/blobdiff - mod/item.php
Merge pull request #2151 from annando/1512-misconfigured-friendica
[friendica.git] / mod / item.php
index 3baf618ca8cb92fc3e8c5d44646688236a326a9b..a2b88a8e305f00474a3adecb034adb5a6ed71ddf 100644 (file)
@@ -51,7 +51,6 @@ function item_post(&$a) {
        $message_id = ((x($_REQUEST,'message_id') && $api_source)  ? strip_tags($_REQUEST['message_id'])       : '');
 
        $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
-       $consensus = intval($_REQUEST['consensus']);
        $preview = ((x($_REQUEST,'preview')) ? intval($_REQUEST['preview']) : 0);
 
 
@@ -363,8 +362,7 @@ function item_post(&$a) {
        if((local_user()) && (local_user() == $profile_uid)) {
                $self = true;
                $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
-                       intval($_SESSION['uid'])
-               );
+                       intval($_SESSION['uid']));
        }
        elseif(remote_user()) {
                if(is_array($_SESSION['remote'])) {
@@ -656,15 +654,6 @@ function item_post(&$a) {
        if(!$thr_parent)
                $thr_parent = $uri;
 
-
-       /* *
-        * to make consensus work, red requests the consensus flag from boot.php
-        * this have to be inserted into the lower $datarray
-        * 
-        *      if($consensus)
-        *              $item_flags |= ITEM_CONSENSUS;
-        */
-
        $datarray = array();
        $datarray['uid']           = $profile_uid;
        $datarray['type']          = $post_type;