From bed28a9d3a4ccd52da1b9e7851b132e0318e1d08 Mon Sep 17 00:00:00 2001 From: Michael Born Date: Mon, 20 Jul 2026 11:58:17 -0400 Subject: [PATCH] COLDBOX-1407 - Protect against url.results collision on cache results variable --- system/cache/store/ConcurrentStore.cfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/cache/store/ConcurrentStore.cfc b/system/cache/store/ConcurrentStore.cfc index 9bcf0c1c8..13613a4d0 100644 --- a/system/cache/store/ConcurrentStore.cfc +++ b/system/cache/store/ConcurrentStore.cfc @@ -120,7 +120,7 @@ component implements="coldbox.system.cache.store.IObjectStore" accessors="true" function getQuiet( required objectKey ){ // retrieve from map var results = variables.pool.get( arguments.objectKey ); - if ( !isNull( results ) ) { + if ( !isNull( local.results ) ) { return results.object; } }