Skip to content

Commit 6b15ef7

Browse files
committed
https://ortussolutions.atlassian.net/browse/COLDBOX-820
1 parent 92339c1 commit 6b15ef7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

system/modules/HTMLHelper/models/HTMLHelper.cfc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2375,11 +2375,11 @@ component extends="coldbox.system.FrameworkSupertype" accessors=true singleton{
23752375

23762376
// Calculat href for asset delivery via Browser
23772377
if( mapping.len() ){
2378-
var href = "/#mapping#/#includesLocation#/#arguments.fileName#";
2378+
var href = "/#mapping#/#includesLocation#/#arguments.fileName#";
23792379
} else {
2380-
var href = "/#includesLocation#/#arguments.fileName#";
2380+
var href = "/#includesLocation#/#arguments.fileName#";
23812381
}
2382-
var key = reReplace( href, "^/", "" );
2382+
var key = reReplace( href, "^/", "" );
23832383

23842384
// Verify manifest
23852385
if ( ! fileExists( manifestPath ) ) {
@@ -2389,15 +2389,15 @@ component extends="coldbox.system.FrameworkSupertype" accessors=true singleton{
23892389

23902390
// Only read, parse and store once
23912391
var manifestDirectory = templateCache.getOrSet(
2392-
"elixirManifest",
2392+
"elixirManifest-#hash( manifestPath )#",
23932393
function(){
23942394
var contents = fileRead( manifestPath );
23952395
if( isJSON( contents ) ){
23962396
return deserializeJSON( contents );
23972397
}
23982398
return {};
23992399
}
2400-
);
2400+
);
24012401

24022402
if ( arguments.version == 3 ) {
24032403
if ( ! structKeyExists( manifestDirectory, key ) ) {

0 commit comments

Comments
 (0)