From 9093642793874157027d78691ead384c35850c0f Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Tue, 24 Aug 2010 17:24:40 -0500 Subject: [PATCH] properly load the wizard class --- lib/WebGUI/Content/Wizard.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/WebGUI/Content/Wizard.pm b/lib/WebGUI/Content/Wizard.pm index 78a8bb29b..e5cf98d9d 100644 --- a/lib/WebGUI/Content/Wizard.pm +++ b/lib/WebGUI/Content/Wizard.pm @@ -1,5 +1,7 @@ package WebGUI::Content::Wizard; +use strict; + =head1 LEGAL ------------------------------------------------------------------- @@ -31,7 +33,7 @@ sub handler { if ( $session->form->get('op') eq 'wizard' && $session->form->get('wizard_class') ) { my $class = $session->form->get('wizard_class'); - WebGUI::Pluggable->load($class); + WebGUI::Pluggable::load($class); if ( $class->isa( 'WebGUI::Wizard' ) ) { my $wizard = $class->new( $session ); return $wizard->dispatch;