We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8baa65a commit 7a19e16Copy full SHA for 7a19e16
system/Bootstrap.cfc
@@ -501,12 +501,13 @@ component serializable="false" accessors="true" {
501
// If the file is "index.(cfm|bxm)" then we will process it
502
if ( reFindNoCase( "index\.(cfm|bxm)", listLast( arguments.targetPage, "/" ) ) ) {
503
processColdBoxRequest();
504
+ return false;
505
} else {
506
// Just load the module mappings in case we are in a module request or a web socket request.
507
application[ locateAppKey() ].getModuleService().loadMappings();
508
+ return true;
509
}
510
- return true;
511
512
513
/**
0 commit comments