ORM::orderby -> ORM::order_by

This commit is contained in:
Bharat Mediratta
2009-11-25 19:26:52 -08:00
parent 0ef6994f23
commit 0121bfd585
17 changed files with 40 additions and 40 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ class comment_rss_Core {
$comments = ORM::factory("comment")
->viewable()
->where("state", "published")
->orderby("created", "DESC");
->order_by("created", "DESC");
if ($feed_id == "item") {
$comments->where("item_id", $id);