Exemplo n.º 1
0
 /**
  * Overload the provided {@link Controller::handleRequest()} to append the
  * correct status code post request since otherwise permission related error 
  * pages such as 401 and 403 pages won't be rendered due to
  * {@link SS_HTTPResponse::isFinished() ignoring the response body.
  *
  * @param SS_HTTPRequest $request
  * @param DataModel $model
  * @return SS_HTTPResponse
  */
 public function handleRequest(SS_HTTPRequest $request, DataModel $model = NULL)
 {
     $body = parent::handleRequest($request, $model);
     $this->response->setStatusCode($this->ErrorCode);
     return $this->response;
 }