/**
 * The muboardGetLastAnswer modifier return the last answer for aposting
 * @param  int       $id      parent id
 *
 * @return string the output of last posting
 */
function smarty_modifier_muboardGetLastAnswer($id)
{
    $out = MUBoard_Util_View::getLastAnswer($id);
    return $out;
}