Skip to content

Commit

Permalink
change of scope listener
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed May 7, 2024
1 parent 96c648b commit 9572d2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/bx/interceptors/AdobeServerScope.bx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class{
* - scope : The scope that was created
* - scopeName : The name of the scope
*/
function onScopeCreation( data ){
function onServerScopeCreation( data ){
// Only listen to server scope
if( data.scopeName.getName().equals( "server" ) ){
// Add coldfusion struct
Expand Down
2 changes: 1 addition & 1 deletion src/main/bx/interceptors/LuceeServerScope.bx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class{
* - scope : The scope that was created
* - scopeName : The name of the scope
*/
function onScopeCreation( data ){
function onServerScopeCreation( data ){
// Only listen to server scope
if( data.scopeName.getName().equals( "server" ) ){
// Add coldfusion struct
Expand Down

0 comments on commit 9572d2d

Please sign in to comment.