Show
Ignore:
Timestamp:
04/17/08 21:48:11 (20 months ago)
Author:
bchoate
Message:

Added support for phrases on count tags. BugId:79359

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-35/php/lib/function.mtblogcommentcount.php

    r1174 r1956  
    88function smarty_function_mtblogcommentcount($args, &$ctx) { 
    99    $args['blog_id'] = $ctx->stash('blog_id'); 
    10     return $ctx->mt->db->blog_comment_count($args); 
     10    $count = $ctx->mt->db->blog_comment_count($args); 
     11    return $ctx->count_format($count, $args); 
    1112} 
    12 ?>