aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/Controller.pm
diff options
context:
space:
mode:
authoredenc <edenc@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2009-09-17 18:14:04 +0000
committeredenc <edenc@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2009-09-17 18:14:04 +0000
commit987fc6e26baea18fa0c3c48fb1208c5c350a4bc1 (patch)
tree6aec7fc955162eb069c8b322904dce14f0b76a7b /lib/Reaction/UI/Controller.pm
parenta841aae8c18238dc34d87e5eda150ab2f0770475 (diff)
downloadreaction-987fc6e26baea18fa0c3c48fb1208c5c350a4bc1.tar.gz
reaction-987fc6e26baea18fa0c3c48fb1208c5c350a4bc1.zip
compatibility fixes for Class::MOP 0.93
Diffstat (limited to 'lib/Reaction/UI/Controller.pm')
-rw-r--r--lib/Reaction/UI/Controller.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Reaction/UI/Controller.pm b/lib/Reaction/UI/Controller.pm
index 8ed781f..2d1b843 100644
--- a/lib/Reaction/UI/Controller.pm
+++ b/lib/Reaction/UI/Controller.pm
@@ -11,7 +11,8 @@ with 'Catalyst::Component::InstancePerContext';
sub build_per_context_instance {
my ($self, $c, @args) = @_;
- my $newself = $self->new($self->_application, {%$self, context => $c, @args});
+ my $class = ref($self) || $self;
+ my $newself = $class->new($self->_application, {%$self, context => $c, @args});
return $newself;
}