From df6bd7a3a6be7d31490f44f8f06378ef98964a33 Mon Sep 17 00:00:00 2001 From: "ian%hixie.ch" Date: Sat, 6 Apr 2002 21:34:39 +0000 Subject: [PATCH] change the constructor to be a service instance constructor only, so that if descendants are also services, we don't leak the world through having a circular reference to the app. --- webtools/PLIF/PLIF/Output.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/PLIF/PLIF/Output.pm b/webtools/PLIF/PLIF/Output.pm index 9dc2e75165c3..d3255ef15e22 100644 --- a/webtools/PLIF/PLIF/Output.pm +++ b/webtools/PLIF/PLIF/Output.pm @@ -44,7 +44,7 @@ sub protocol { $self->notImplemented(); # this must be overriden by descendants } -sub init { +sub serviceInstanceInit { my $self = shift; my($app) = @_; $self->SUPER::init(@_);