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