Skip to content

Commit

Permalink
Merge branch '2.3' into 2.7
Browse files Browse the repository at this point in the history
* 2.3:
  fix status code in snippet
  • Loading branch information
weaverryan committed Apr 12, 2016
2 parents 0d71b6c + 0474b57 commit 351f796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/http_cache.rst
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ Here is how you can configure the Symfony reverse proxy to support the
if ($this->getStore()->purge($request->getUri())) {
$response->setStatusCode(200, 'Purged');
} else {
$response->setStatusCode(200, 'Not found');
$response->setStatusCode(404, 'Not found');
}

return $response;
Expand Down

0 comments on commit 351f796

Please sign in to comment.