&& (request.getSession().getAttribute("savedCommand") != null)) {
command = (Command) request.getSession().getAttribute(
"savedCommand");
try {
request.getRequestDispatcher(
response.encodeURL("/do" + command.buildURL()))
.forward(request, response);
return;
} catch (ServletException e) {
Logger.error("Couldn't forward request ContentList.jsp", e);
} catch (IOException e) {