/**
 * The muboardGetNumberOfPostingsOfForum return the number of postings in a forum.
 *
 * @param  int       $id      forum id
 *
 * @return id the number of postings
 */
function smarty_modifier_muboardGetNumberOfPostingsOfForum($id)
{
    $out = MUBoard_Util_View::getPostingsOfForum($id);
    return $out;
}