Skip to content

Commit c82e895

Browse files
committed
make sure placeholder are used for all values in cfconfig
1 parent a6be136 commit c82e895

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

core/src/main/java/lucee/runtime/config/ConfigWebFactory.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4991,9 +4991,7 @@ private static void _loadExtensionBundles(ConfigServerImpl cs, ConfigImpl config
49914991
id = Caster.toString(child.get(KeyConstants._id, null), null);
49924992
BundleInfo[] bfsq;
49934993
try {
4994-
String res = Caster.toString(child.get(KeyConstants._resource, null), null);
4995-
if (StringUtil.isEmpty(res)) res = Caster.toString(child.get(KeyConstants._path, null), null);
4996-
if (StringUtil.isEmpty(res)) res = Caster.toString(child.get(KeyConstants._url, null), null);
4994+
String res = getAttr(child, new String[] { "resource", "path", "url" });
49974995

49984996
if (StringUtil.isEmpty(id) && StringUtil.isEmpty(res)) continue;
49994997

loader/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project default="core" basedir="." name="Lucee"
33
xmlns:resolver="antlib:org.apache.maven.resolver.ant">
44

5-
<property name="version" value="6.1.2.44-SNAPSHOT"/>
5+
<property name="version" value="6.1.2.45-SNAPSHOT"/>
66

77
<taskdef uri="antlib:org.apache.maven.resolver.ant" resource="org/apache/maven/resolver/ant/antlib.xml">
88
<classpath>

loader/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>org.lucee</groupId>
55
<artifactId>lucee</artifactId>
6-
<version>6.1.2.44-SNAPSHOT</version>
6+
<version>6.1.2.45-SNAPSHOT</version>
77
<packaging>jar</packaging>
88

99
<name>Lucee Loader Build</name>

0 commit comments

Comments
 (0)