aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/Controller/Collection.pm
diff options
context:
space:
mode:
authorgroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-01-21 22:08:47 +0000
committergroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-01-21 22:08:47 +0000
commitcb92a3a388a813d1309757155a4b7750eb9f5504 (patch)
treea149a0d6e129517b44ab6d41a0d89ff101be91c8 /lib/Reaction/UI/Controller/Collection.pm
parentc6ea0238337f4b071be1670e01cfa0a6467db101 (diff)
downloadreaction-cb92a3a388a813d1309757155a4b7750eb9f5504.tar.gz
reaction-cb92a3a388a813d1309757155a4b7750eb9f5504.zip
add a default 404 and 403 action, use the 404 on collection controller, make html source less ugly by eliminating unnecessary whitespace
Diffstat (limited to 'lib/Reaction/UI/Controller/Collection.pm')
-rw-r--r--lib/Reaction/UI/Controller/Collection.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Reaction/UI/Controller/Collection.pm b/lib/Reaction/UI/Controller/Collection.pm
index 9606695..77a0005 100644
--- a/lib/Reaction/UI/Controller/Collection.pm
+++ b/lib/Reaction/UI/Controller/Collection.pm
@@ -41,7 +41,7 @@ sub base :Action :CaptureArgs(0) {
sub object :Chained('base') :PathPart('id') :CaptureArgs(1) {
my ($self, $c, $key) = @_;
my $object = $self->get_collection($c)->find($key);
- confess "Object? what object?" unless $object; # should be a 404.
+ $c->detach("/error_404") unless $object;
$c->stash(object => $object);
}