From 1ff2bd49589e9d2de9339d6c477f079de6475010 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Wed, 21 May 2008 10:08:15 +0000 Subject: * fixed bug in slxconfig introduced yesterday that would not allow setting any attribute that has not come from a plugin (reported by Reiner) git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1779 95ad53e4-c205-0410-b2fa-d234c58c8868 --- config-db/slxconfig | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'config-db/slxconfig') diff --git a/config-db/slxconfig b/config-db/slxconfig index c8c05093..4414d2db 100755 --- a/config-db/slxconfig +++ b/config-db/slxconfig @@ -39,7 +39,6 @@ use OpenSLX::AttributeRoster; use OpenSLX::Basics; use OpenSLX::ConfigDB; use OpenSLX::ConfigFolder; -use OpenSLX::OSPlugin::Roster; use OpenSLX::Utils; my %option; @@ -248,12 +247,7 @@ sub parseKeyValueArgsWithAttrs if (grep { $_ eq $key } @$allowedKeys) { $dataHash{$key} = $value; } elsif (grep { $_ eq $key } @$allowedAttrKeys) { - $key =~ m{^(.+)::.+?$}; - my $pluginName = $1; - my $plugin - = OpenSLX::OSPlugin::Roster->getPlugin($pluginName) - || die _tr('unable to load plugin "%s"', $pluginName); - $plugin->checkValueForKey($key, $value); + OpenSLX::AttributeRoster->checkValueForKey($key, $value); $attrHash{$key} = $value; } else { die _tr("unknown key '%s' specified for %s\n", $key, $table); -- cgit v1.2.3-55-g7522