Skip to content

Commit

Permalink
LDEV-5043 - allow alias "customTagSearchSubdirectories"
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 13, 2024
1 parent 54a5ebc commit d601359
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/main/java/lucee/runtime/config/ConfigWebFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -2899,6 +2899,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));
}
Expand Down

0 comments on commit d601359

Please sign in to comment.