diff options
author | Friendika <info@friendika.com> | 2011-04-11 15:45:19 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-11 15:45:19 -0700 |
commit | ff15ea099310bab5cdcaa724274f3ef22301fcb4 (patch) | |
tree | 0ba3053c821967e467943e1907010063c2f10565 | |
parent | 21c48a147655378bef133aa9fd3f5aa162a21675 (diff) | |
download | volse-hubzilla-ff15ea099310bab5cdcaa724274f3ef22301fcb4.tar.gz volse-hubzilla-ff15ea099310bab5cdcaa724274f3ef22301fcb4.tar.bz2 volse-hubzilla-ff15ea099310bab5cdcaa724274f3ef22301fcb4.zip |
wrong variable passed
-rw-r--r-- | boot.php | 2 | ||||
-rw-r--r-- | include/conversation.php | 24 | ||||
-rw-r--r-- | mod/profile.php | 2 |
3 files changed, 13 insertions, 15 deletions
@@ -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 ); diff --git a/include/conversation.php b/include/conversation.php index 76bb8b6af..d6a439a53 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -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; diff --git a/mod/profile.php b/mod/profile.php index a12fd9af2..0a044069a 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -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) { |