Skip to content

Commit

Permalink
Fix access to $config variable in CasManager
Browse files Browse the repository at this point in the history
Fix error introduced by commit a5c3785ed8d6a35868bc169f07e40e889087fd2e and reported on a comment in issue #93
  • Loading branch information
vitorhugomattos authored and subfission committed Apr 7, 2021
1 parent 14bb015 commit 0b4912a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Subfission/Cas/CasManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected function enableDebugCas() {
phpCAS::setLogger();
}
phpCAS::log( 'Loaded configuration:' . PHP_EOL
. serialize( $config ) );
. serialize( $this->config ) );
}
/**
* Configure CAS Client|Proxy
Expand Down

0 comments on commit 0b4912a

Please sign in to comment.