From c6953507fdfd6b167364f04e6b30212d336ea7fd Mon Sep 17 00:00:00 2001 From: Grant Copley Date: Tue, 8 Oct 2024 15:36:43 -0500 Subject: [PATCH] fix test --- models/Component.cfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/Component.cfc b/models/Component.cfc index 24b830f..06b51a6 100644 --- a/models/Component.cfc +++ b/models/Component.cfc @@ -1136,7 +1136,7 @@ component output="true" { // Extract the counter from the tag name local.counter = key.replaceNoCase( "assets", "" ); // Create assets tag id based on hash of assets - local.assetsTagId = hash( value ); + local.assetsTagId = hash( value, "MD5" ); // Track the assets tag variables._assets[ local.assetsTagId ] = value; local.requestAssets = variables._CBWIREController.getRequestAssets();