Changeset 1956 for branches/release-35/php/lib/function.mtcategorycount.php
- Timestamp:
- 04/17/08 21:48:11 (20 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/release-35/php/lib/function.mtcategorycount.php
r1174 r1956 8 8 function smarty_function_mtcategorycount($args, &$ctx) { 9 9 $category = $ctx->stash('category'); 10 return $category['category_count']; 10 $count = $category['category_count']; 11 return $ctx->count_format($count, $args); 11 12 } 12 ?>
