Skip to content

Commit

Permalink
Apply cfformat changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano authored and github-actions[bot] committed Apr 22, 2024
1 parent 626ed7d commit abc38fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/reports/BaseReporter.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ component {
* Helper method to deal with ACF2016's overload of the page context response, come on Adobe, get your act together!
*/
function getPageContextResponse(){
if( server.keyExists( "coldfusion" ) && server.coldfusion.productName.findNoCase( "ColdFusion") ){
if ( server.keyExists( "coldfusion" ) && server.coldfusion.productName.findNoCase( "ColdFusion" ) ) {
return getPageContext().getResponse().getResponse();
} else {
return getPageContext().getResponse();
Expand Down
2 changes: 1 addition & 1 deletion system/util/Util.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ component {
boolean function inThread(){
var engine = "LUCEE";

if ( server.keyExists( "coldfusion" ) && server.coldfusion.productname.findNoCase( "ColdFusion") ) {
if ( server.keyExists( "coldfusion" ) && server.coldfusion.productname.findNoCase( "ColdFusion" ) ) {
engine = "ADOBE";
}

Expand Down

0 comments on commit abc38fc

Please sign in to comment.