Skip to content

Commit

Permalink
TESTBOX-404 #resolve
Browse files Browse the repository at this point in the history
The identification of the web pageContext had a typo: getpageContext insted of just pagecontext for BoxLang detection
  • Loading branch information
lmajano committed Sep 28, 2024
1 parent 9de9487 commit bfe8100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/reports/BaseReporter.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ component {
*/
function getPageContextResponse(){
// If running in CLI mode, we don't have a page context
if ( !getFunctionList().keyExists( "pageContext" ) ) {
if ( !getFunctionList().keyExists( "getPageContext" ) ) {
return {
"setContentType" : function(){
// do nothing
Expand Down

0 comments on commit bfe8100

Please sign in to comment.