CustomInterception issue with M5 and M6

All the examples show, to create custom interception points, to do
this:
(From: http://wiki.coldbox.org/wiki/ConfigurationCFC.cfm#interceptorSettings)

     //Interceptor Settings
     interceptorSettings = {
       throwOnInvalidStates = false,
       customInterceptors = "onLogin,onWikiTranslation,onAppClose"
     };

Unfortunately, it looks like the Coldbox code for M5/M6 doesn't
actually reference 'customInterceptors' anywhere. The core code still
looks at the old XML name of 'customInterceptionPoints'.

We were able to get around the problem by doubling up the line with
the old key name that the code is seeking. (Fortunately, there is no
schema validation since it's not XML.)

     //Interceptor Settings
     interceptorSettings = {
       throwOnInvalidStates = false,
       customInterceptors = "onLogin,onWikiTranslation,onAppClose",
       customInterceptionPoints =
"onLogin,onWikiTranslation,onAppClose"
     };

Yes, marked as a bug

Luis F. Majano
President
Ortus Solutions, Corp

ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Blog: http://www.luismajano.com
IECFUG Manager: http://www.iecfug.com

fixed on github.
Luis F. Majano
President
Ortus Solutions, Corp

ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Blog: http://www.luismajano.com
IECFUG Manager: http://www.iecfug.com