I will update with a proper overview (and a PR) when I get chance, I'm currently in the midst of creating a local patch, but essentially at website scope the encryption check has been placed above the foreach loop that it needs to reside within. See an example diff below:
Essentially $configuration['encryption'] is being checked before it even exists (it doesn't error as the $configuration variable exists from the global scope that runs before).
Thanks for a great open source tool and as noted I'll get a PR sorted when I get a bit of spare time 👍
I will update with a proper overview (and a PR) when I get chance, I'm currently in the midst of creating a local patch, but essentially at website scope the encryption check has been placed above the
foreach
loop that it needs to reside within. See an example diff below:Essentially
$configuration['encryption']
is being checked before it even exists (it doesn't error as the$configuration
variable exists from the global scope that runs before).Thanks for a great open source tool and as noted I'll get a PR sorted when I get a bit of spare time 👍