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