request.setAttribute("isAttending", attending);
// If the user is looged in get the comment if there is any
if (user != null) {
CommentsRating cr = mf.getCommentRating(user, se);
if (cr != null && cr.getCommentString() != null) {
request.setAttribute("comment", cr.getCommentString());
}
}
return "/site.jsp?page=event.jsp";
}
if (path.equals("/delete"))