diff --git a/core/src/main/java/lucee/runtime/config/ConfigWebFactory.java b/core/src/main/java/lucee/runtime/config/ConfigWebFactory.java index e62f3b682e..7a1bd9536a 100644 --- a/core/src/main/java/lucee/runtime/config/ConfigWebFactory.java +++ b/core/src/main/java/lucee/runtime/config/ConfigWebFactory.java @@ -2368,6 +2368,8 @@ else if (access >= SecurityManager.VALUE_1 && access <= SecurityManager.VALUE_10 // PSQ String strPSQ = getAttr(root, "preserveSingleQuote"); + if (StringUtil.isEmpty(strPSQ)) strPSQ = getAttr(root, "datasourcePreserveSingleQuotes"); + if (access != SecurityManager.VALUE_NO && !StringUtil.isEmpty(strPSQ)) { config.setPSQL(toBoolean(strPSQ, true)); } @@ -2922,6 +2924,7 @@ private static void _loadCustomTagsMappings(ConfigServerImpl configServer, Confi // do patch cache String strDoPathcache = getAttr(root, "customTagUseCachePath"); + if (StringUtil.isEmpty(strDoPathcache, true)) strDoPathcache = getAttr(root, "customTagCachePaths"); if (hasAccess && !StringUtil.isEmpty(strDoPathcache, true)) { config.setUseCTPathCache(Caster.toBooleanValue(strDoPathcache.trim(), true)); } @@ -2935,6 +2938,7 @@ else if (hasCS) { } else { String strDoCTLocalSearch = getAttr(root, "customTagLocalSearch"); + if (StringUtil.isEmpty(strDoCTLocalSearch, true)) strDoCTLocalSearch = getAttr(root, "customTagSearchLocal"); if (hasAccess && !StringUtil.isEmpty(strDoCTLocalSearch)) { config.setDoLocalCustomTag(Caster.toBooleanValue(strDoCTLocalSearch.trim(), true)); } @@ -2949,6 +2953,8 @@ else if (hasCS) { } else { String strDoCTDeepSearch = getAttr(root, "customTagDeepSearch"); + if (StringUtil.isEmpty(strDoCTDeepSearch, true)) strDoCTDeepSearch = getAttr(root, "customTagSearchSubdirectories"); + if (hasAccess && !StringUtil.isEmpty(strDoCTDeepSearch)) { config.setDoCustomTagDeepSearch(Caster.toBooleanValue(strDoCTDeepSearch.trim(), false)); } diff --git a/loader/build.xml b/loader/build.xml index 4eb3117322..1f8c67c697 100644 --- a/loader/build.xml +++ b/loader/build.xml @@ -2,7 +2,7 @@ - + diff --git a/loader/pom.xml b/loader/pom.xml index 16d32cb9b3..5a6b8de92b 100644 --- a/loader/pom.xml +++ b/loader/pom.xml @@ -3,7 +3,7 @@ org.lucee lucee - 6.2.0.209-SNAPSHOT + 6.2.0.210-SNAPSHOT jar Lucee Loader Build