From d4f44b15304eba0f2365d177471299beec192796 Mon Sep 17 00:00:00 2001 From: Domovoy Date: Sun, 12 Aug 2012 17:34:02 +0200 Subject: [PATCH] Some fixes --- object/Item.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/object/Item.php b/object/Item.php index 57a7ec0b2..0639e4db7 100644 --- a/object/Item.php +++ b/object/Item.php @@ -133,6 +133,7 @@ class Item extends BaseObject { * Maybe we should establish a way to be notified about conversation changes */ $this->check_wall_to_wall(); + if($this->is_wall_to_wall() && ($this->get_owner_url() == $this->get_redirect_url())) $osparkle = ' sparkle'; @@ -171,7 +172,6 @@ class Item extends BaseObject { $body = prepare_body($item,true); $tmp_item = array( - // template to use to render item (wall, walltowall, search) 'template' => $this->get_template(), 'type' => implode("",array_slice(explode("/",$item['verb']),-1)), @@ -207,7 +207,7 @@ class Item extends BaseObject { 'vote' => $buttons, 'like' => $like, 'dislike' => $dislike, - 'comment' => $this->get_comment_box($commentww), + 'comment' => $this->get_comment_box(), 'previewing' => $previewing, 'wait' => t('Please wait'), ); @@ -221,7 +221,7 @@ class Item extends BaseObject { $children = $this->get_children(); $nb_children = count($children); if($nb_children > 0) { - foreach($this->get_children() as $child) { + foreach($children as $child) { $result['children'][] = $child->get_template_data($alike, $dlike, $thread_level + 1); } // Collapse @@ -443,7 +443,7 @@ class Item extends BaseObject { * _ The comment box string (empty if no comment box) * _ false on failure */ - private function get_comment_box($ww) { + private function get_comment_box() { if(!$this->is_toplevel() && !get_config('system','thread_allow')) { return ''; }