Skip to content

Commit

Permalink
Merge branch '2.7' into 2.8
Browse files Browse the repository at this point in the history
* 2.7:
  fix status code in snippet
  • Loading branch information
weaverryan committed Apr 12, 2016
2 parents cba307c + 351f796 commit 164db85
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 164db85

Please sign in to comment.