Skip to content

Commit

Permalink
Correct /modules_app location
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Jul 27, 2016
1 parent 5c9fa5d commit 3e4e88a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/web/config/ApplicationLoader.cfc
Expand Up @@ -318,8 +318,8 @@ Loads a coldbox cfc configuration file
configStruct.ModulesExternalLocation = listToArray( configStruct.ModulesExternalLocation );
}
// Add modules_app convention
if( !arrayContainsNoCase( configStruct.ModulesExternalLocation, "modules_app" ) ){
arrayAppend( configStruct.ModulesExternalLocation, "modules_app" );
if( !arrayContainsNoCase( configStruct.ModulesExternalLocation, "/modules_app" ) ){
arrayAppend( configStruct.ModulesExternalLocation, "/modules_app" );
}
</cfscript>
</cffunction>
Expand Down

0 comments on commit 3e4e88a

Please sign in to comment.