fix [ 1304940 ] Incorrect Spelling of Instantiate

This commit is contained in:
Wouter van Oijen 2005-09-26 21:00:44 +00:00
parent d89b8f1794
commit 6be547e55a
9 changed files with 12 additions and 12 deletions

View file

@ -44,7 +44,7 @@ sub getInstance {
eval($load);
WebGUI::ErrorHandler::fatal("Authentication module failed to compile: $cmd.".$@) if($@);
my $auth = eval{$cmd->new($authMethod,$userId)};
WebGUI::ErrorHandler::fatal("Couldn't instanciate authentication module: $authMethod. Root cause: ".$@) if($@);
WebGUI::ErrorHandler::fatal("Couldn't instantiate authentication module: $authMethod. Root cause: ".$@) if($@);
return $auth;
}