function smarty_function_mtcommentscorecount($args, &$ctx)
{
    return hdlr_score_count($ctx, 'comment', $args['namespace'], $args);
}
function smarty_function_mtauthorscorecount($args, &$ctx)
{
    return hdlr_score_count($ctx, 'author', $args['namespace']);
}
function smarty_function_mtentryscorecount($args, &$ctx)
{
    return hdlr_score_count($ctx, 'entry', $args['namespace'], $args);
}
function smarty_function_mtauthorscorecount($args, &$ctx)
{
    $count = hdlr_score_count($ctx, 'author', $args['namespace']);
    return $ctx->count_format($count, $args);
}
function smarty_function_mtpingscorecount($args, &$ctx)
{
    return hdlr_score_count($ctx, 'tbping', $args['namespace'], $args);
}