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.mtcategorycount.php

    r1174 r1956  
    88function smarty_function_mtcategorycount($args, &$ctx) { 
    99    $category = $ctx->stash('category'); 
    10     return $category['category_count']; 
     10    $count = $category['category_count']; 
     11    return $ctx->count_format($count, $args); 
    1112} 
    12 ?>