/**
 * The muboardGetNumberOfPostingsOfCategory return the number of postings in a category.
 *
 * @param  int       $id      cat id
 *
 * @return id the number of postings
 */
function smarty_modifier_muboardGetNumberOfPostingsOfCategory($id)
{
    $out = MUBoard_Util_View::getPostingsOfCategory($id);
    return $out;
}