Skip to content

Commit

Permalink
Merged r73261 from branches/2.3
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.2@73401 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
Sam Minnee committed Feb 2, 2011
1 parent 7adb9ce commit 205e64e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/control/HTTPResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function output() {
* Specifically, returns true if a redirect has already been requested
*/
function isFinished() {
return $this->statusCode == 302 || $this->statusCode == 301;
return in_array($this->statusCode, array(301, 302, 401, 403));
}

/**
Expand Down

0 comments on commit 205e64e

Please sign in to comment.