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
@@ -39,7 +39,7 @@ class comment_theme_Core {
$view->comments = ORM::factory("comment")
->where("item_id", $theme->item()->id)
->where("state", "published")
->orderby("created", "ASC")
->order_by("created", "ASC")
->find_all();
$block->content = $view;