summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2008-01-09 15:08:20 +0100
committerOliver Tappe2008-01-09 15:08:20 +0100
commit534a13d6f8a3a017a25583ffb82309637b3be353 (patch)
tree4e6f75f984d9c94d3171d561fe8aa5a7cc46faff /config-db
parent* the config-demuxer now only demuxes attributes of active plugins that have (diff)
downloadcore-534a13d6f8a3a017a25583ffb82309637b3be353.tar.gz
core-534a13d6f8a3a017a25583ffb82309637b3be353.tar.xz
core-534a13d6f8a3a017a25583ffb82309637b3be353.zip
* fixed bug that disallowed setting of scoped (a.k.a. plugin-specific)
attributes (the contained double-colon was being rejected) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1456 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rwxr-xr-xconfig-db/slxconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-db/slxconfig b/config-db/slxconfig
index fd145fd8..d59215ed 100755
--- a/config-db/slxconfig
+++ b/config-db/slxconfig
@@ -182,7 +182,7 @@ sub parseKeyValueArgs
my %dataHash;
while (my $param = shift) {
- if ($param !~ m[^\s*([\w\-]+)\s*=(.*)$]) {
+ if ($param !~ m[^\s*([\w\-:]+)\s*=(.*)$]) {
die _tr(
"value specification %s has unknown format, expected <key>=<value>\n",
$param
@@ -210,7 +210,7 @@ sub parseKeyValueArgsWithAttrs
my (%dataHash, %attrHash);
while (my $param = shift) {
- if ($param !~ m[^\s*([\w\-]+)\s*=(.*)$]) {
+ if ($param !~ m[^\s*([\w\-:]+)\s*=(.*)$]) {
die _tr(
"value specification %s has unknown format, expected <key>=<value>\n",
$param