]> git.mxchange.org Git - friendica.git/commitdiff
wrong variable passed
authorFriendika <info@friendika.com>
Mon, 11 Apr 2011 22:45:19 +0000 (15:45 -0700)
committerFriendika <info@friendika.com>
Mon, 11 Apr 2011 22:45:19 +0000 (15:45 -0700)
boot.php
include/conversation.php
mod/profile.php

index 2a4c29c1aec2e9aed1df47a1f78fad1c246beb18..7dfaa021ee7743cb35df845166e938fa741b5c2e 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -2,7 +2,7 @@
 
 set_time_limit(0);
 
-define ( 'FRIENDIKA_VERSION',      '2.1.945' );
+define ( 'FRIENDIKA_VERSION',      '2.1.946' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.21'    );
 define ( 'DB_UPDATE_VERSION',      1048      );
 
index 76bb8b6af15088cf96f532ea90cef58fd84c39d2..d6a439a5365d3524288e5116962ef9bcd3464057 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 
-function conversation(&$a,$r, $mode, $update) {
+function conversation(&$a, $items, $mode, $update) {
 
        require_once('bbcode.php');
 
@@ -23,8 +23,6 @@ function conversation(&$a,$r, $mode, $update) {
                $writable = can_write_wall($a,$profile_owner);
        }
 
-
-
        if($update)
                $return_url = $_SESSION['return_url'];
        else
@@ -35,7 +33,7 @@ function conversation(&$a,$r, $mode, $update) {
        // We will use a local profile photo if they are one of our contacts
        // otherwise we have to get the photo from the item owner's site
 
-       $author_contacts = extract_item_authors($r,local_user());
+       $author_contacts = extract_item_authors($items,local_user());
 
 
        $cmnt_tpl    = load_view_file('view/comment_item.tpl');
@@ -47,7 +45,7 @@ function conversation(&$a,$r, $mode, $update) {
        $alike = array();
        $dlike = array();
        
-       if(count($r)) {
+       if(count($items)) {
 
                if($mode === 'network-new' || $mode === 'search') {
 
@@ -57,7 +55,7 @@ function conversation(&$a,$r, $mode, $update) {
                        $tpl = load_view_file('view/search_item.tpl');
                        $droptpl = load_view_file('view/wall_fake_drop.tpl');
 
-                       foreach($r as $item) {
+                       foreach($items as $item) {
 
                                $comment     = '';
                                $owner_url   = '';
@@ -150,19 +148,19 @@ function conversation(&$a,$r, $mode, $update) {
                // Store the result in the $comments array
 
                $comments = array();
-               foreach($r as $rr) {
-                       if(intval($rr['gravity']) == 6) {
-                               if(! x($comments,$rr['parent']))
-                                       $comments[$rr['parent']] = 1;
+               foreach($items as $item) {
+                       if(intval($item['gravity']) == 6) {
+                               if(! x($comments,$item['parent']))
+                                       $comments[$item['parent']] = 1;
                                else
-                                       $comments[$rr['parent']] += 1;
+                                       $comments[$item['parent']] += 1;
                        }
                }
 
                // map all the like/dislike activities for each parent item 
                // Store these in the $alike and $dlike arrays
 
-               foreach($r as $item) {
+               foreach($items as $item) {
                        like_puller($a,$item,$alike,'like');
                        like_puller($a,$item,$dlike,'dislike');
                }
@@ -171,7 +169,7 @@ function conversation(&$a,$r, $mode, $update) {
                $blowhard = 0;
                $blowhard_count = 0;
 
-               foreach($r as $item) {
+               foreach($items as $item) {
 
                        $comment = '';
                        $template = $tpl;
index a12fd9af2c81236ef5da9dbe1ca473b1224262cb..0a044069a39b8d83b9649e2f6369d532417933d6 100644 (file)
@@ -291,7 +291,7 @@ function profile_content(&$a, $update = 0) {
 
        require_once('include/conversation.php');
 
-       $o .= conversation($a,$r,'profile',$display);
+       $o .= conversation($a,$r,'profile',$update);
 
 
        if(! $update) {