|
Revision 1956, 413 bytes
(checked in by bchoate, 20 months ago)
|
|
Added support for phrases on count tags. BugId:79359
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | # Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd. |
|---|
| 3 | # This program is distributed under the terms of the |
|---|
| 4 | # GNU General Public License, version 2. |
|---|
| 5 | # |
|---|
| 6 | # $Id$ |
|---|
| 7 | |
|---|
| 8 | function smarty_function_mtcategorytrackbackcount($args, &$ctx) { |
|---|
| 9 | $cat = $ctx->stash('category'); |
|---|
| 10 | $cat_id = $cat['category_id']; |
|---|
| 11 | $count = $ctx->mt->db->category_ping_count($cat_id); |
|---|
| 12 | return $ctx->count_format($count, $args); |
|---|
| 13 | } |
|---|