Commit abda02ac authored by Matt Tucker's avatar Matt Tucker Committed by matt

Fixed implementation of getXMLProperties (JM-461).

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@3056 b35dd754-fafc-0310-a699-88a17e54d16e
parent 1de1f19a
......@@ -435,7 +435,7 @@ public class JiveGlobals {
String[] propNames = xmlProperties.getChildrenProperties(parent);
List<String> values = new ArrayList<String>();
for (String propName : propNames) {
String value = getProperty(parent + "." + propName);
String value = getXMLProperty(parent + "." + propName);
if (value != null) {
values.add(value);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment