where("item_id", "=", $item->id) ->where("state", "=", "published") ->order_by("created", "ASC") ->find_all(); $v = new Theme_View("comments.html", "other", "comment-fragment"); $v->comments = $comments; $v->item = $item; print $v; } }