<?php
function smarty_function_MTFeedbackScore($args, &$ctx) {
    $fb =& $ctx->stash('comment');
    $score = '';
    if (isset($fb)) {
        $score = $fb['comment_junk_score'];
        $score or $score = 0;
    } else {
        $fb =& $ctx->stash('ping');
        if (isset($fb)) {
            $score = $fb['tbping_junk_score'];
            $score or $score = 0;
        }
    }
    return $score;
}
?>
