~ubuntu-branches/debian/squeeze/movabletype-opensource/squeeze

« back to all changes in this revision

Viewing changes to php/lib/function.mtentrycommentcount.php

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves
  • Date: 2008-06-13 23:28:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080613232840-ya4jfxv1jgl45a3d
Tags: 4.2~rc2-1
* New upstream release candidate
* Update Standards-Version (no changes)
* Ensure that schema upgrade message is always seen

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# This program is distributed under the terms of the
4
4
# GNU General Public License, version 2.
5
5
#
6
 
# $Id: function.mtentrycommentcount.php 1174 2008-01-08 21:02:50Z bchoate $
 
6
# $Id: function.mtentrycommentcount.php 1956 2008-04-17 21:48:11Z bchoate $
7
7
 
8
8
function smarty_function_mtentrycommentcount($args, &$ctx) {
9
9
    $entry = $ctx->stash('entry');
10
 
    $entry_id = $entry['entry_id'];
11
 
    return $ctx->mt->db->entry_comment_count($entry_id);
 
10
    $count = $entry['entry_comment_count'];
 
11
    return $ctx->count_format($count, $args);
12
12
}
13
 
?>