HttpServletRequest request, HttpServletResponse response)
throws SystemException {
HttpSession session = request.getSession();
User user = (User) session.getAttribute(IConst.SESSION.USER_KEY);
ProcessTopicForm ptForm = (ProcessTopicForm) form;
ForumDAO dao = ForumDAO.getInstance();
try {
if (!dao.checkMod(Integer.parseInt(ptForm.getFid()), user)) {
return (mapping.findForward(IConst.TOKEN.DENIED));
}
dao.setThreadSortBy(ptForm.getTid(), 9);
log(request, "logs.LOG21", ptForm.getTid());
} catch (SQLException sqle) {
getServlet().log("Connection.process", sqle);
throw new SystemException(sqle);
}