aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/Controller.pm
diff options
context:
space:
mode:
authormatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-07-08 19:57:44 +0000
committermatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-07-08 19:57:44 +0000
commit294263ca086f397e98ddf96bb02c51e1a405f325 (patch)
tree006d3feffe220a6f0501fdcdccf4100678de2080 /lib/Reaction/UI/Controller.pm
parent8909345a99d2a873345a3e873b07f3bff8e42c7e (diff)
downloadreaction-294263ca086f397e98ddf96bb02c51e1a405f325.tar.gz
reaction-294263ca086f397e98ddf96bb02c51e1a405f325.zip
more $self->blessed stompage
Diffstat (limited to 'lib/Reaction/UI/Controller.pm')
-rw-r--r--lib/Reaction/UI/Controller.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Reaction/UI/Controller.pm b/lib/Reaction/UI/Controller.pm
index a6ff6ef..0ccba8f 100644
--- a/lib/Reaction/UI/Controller.pm
+++ b/lib/Reaction/UI/Controller.pm
@@ -55,7 +55,7 @@ sub redirect_to {
my $action;
if(!ref $to){
$action = $self->action_for($to);
- confess("Failed to locate action ${to} in " . $self->blessed) unless $action;
+ confess("Failed to locate action ${to} in " . blessed($self)) unless $action;
}
elsif( blessed $to && $to->isa('Catalyst::Action') ){
$action = $to;