diff options
Diffstat (limited to 'modules/tag/helpers')
| -rw-r--r-- | modules/tag/helpers/tag.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/tag/helpers/tag.php b/modules/tag/helpers/tag.php index 8558ac30..8694bcec 100644 --- a/modules/tag/helpers/tag.php +++ b/modules/tag/helpers/tag.php @@ -57,7 +57,7 @@ class tag_Core {     */    static function popular_tags($count) {      return ORM::factory("tag") -      ->orderby("count", "DESC") +      ->order_by("count", "DESC")        ->limit($count)        ->find_all();    } | 
