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;