Skip to content

Commit

Permalink
bug #6451 fix status code in snippet (Barno)
Browse files Browse the repository at this point in the history
This PR was submitted for the 3.0 branch but it was merged into the 2.3 branch instead (closes #6451).

Discussion
----------

fix status code in snippet

| Q                 | A
| -------------    | ---
| Doc fix?       | yes
| New docs?   | no
| Applies to    | all

Commits
-------

f8f70ba fix status code in snippet
  • Loading branch information
weaverryan committed Apr 12, 2016
2 parents a0165f9 + f8f70ba commit 0474b57
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 0474b57

Please sign in to comment.