Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed event clone wrt related links #22

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
use correct name to get auth instance
daviddelikat committed Feb 24, 2012

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 2274bd59ecb5ad5b83717758fe4d4d443ab8d8e2
2 changes: 1 addition & 1 deletion lib/WebGUI/Operation/Settings.pm
Original file line number Diff line number Diff line change
@@ -656,7 +656,7 @@ sub www_editSettings {

# Get fieldsets for avaiable auth methods
foreach my $authName (@{$session->config->get("authMethods")}) {
my $authInstance = WebGUI::Operation::Auth::getInstance($session,$_,1);
my $authInstance = WebGUI::Operation::Auth::getInstance($session,$authName,1);
$tabform->getTab( "auth" )->addFieldset( $authInstance->editUserSettingsForm, name => $authName, label => $authName );
}