Update getConfigValue.js

This commit is contained in:
John Bowdre 2022-06-14 08:50:29 -05:00 committed by GitHub
parent f26ef563bc
commit 5fe75ade56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,4 +9,5 @@ for each (configElement in Server.getConfigurationElementCategoryWithPath(path).
if (configElement.name.indexOf(configurationName) === 0) { break; }; if (configElement.name.indexOf(configurationName) === 0) { break; };
} }
var attribValue = configElement.getAttributeWithKey(variableName).value; var attribValue = configElement.getAttributeWithKey(variableName).value;
return attribValue; return attribValue;