Skip to content

Commit

Permalink
Merge branch '0.20' of git://github.com/recess/recess
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan committed Mar 25, 2009
2 parents f5b3ae1 + 31b70eb commit cdc76bc
Showing 1 changed file with 13 additions and 0 deletions.
@@ -0,0 +1,13 @@
<?php
Library::import('recess.http.ForwardingResponse');
Library::import('recess.http.ResponseCodes');

class ForwardingForbiddenResponse extends ForwardingResponse {
public $context;

public function __construct(Request $request, $contentUri, $context = '') {
parent::__construct($request, ResponseCodes::HTTP_FORBIDDEN, $contentUri);
$this->context = $context;
}
}
?>

0 comments on commit cdc76bc

Please sign in to comment.