diff --git a/core/src/main/java/lucee/runtime/config/ConfigWebFactory.java b/core/src/main/java/lucee/runtime/config/ConfigWebFactory.java index e8ae5af7ea..518b8550cb 100644 --- a/core/src/main/java/lucee/runtime/config/ConfigWebFactory.java +++ b/core/src/main/java/lucee/runtime/config/ConfigWebFactory.java @@ -2872,6 +2872,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)); }