mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Bugfix: plugin config $this->aData is private and not accessible
This commit is contained in:
parent
8e7569c8f3
commit
4e3a97a6f1
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ class Plugin extends \RainLoop\Config\AbstractConfig
|
|||
public function jsonSerialize()
|
||||
{
|
||||
$aData = [];
|
||||
foreach ($this->aData as $sSectionKey => $aSectionValue) {
|
||||
foreach (parent::jsonSerialize() as $sSectionKey => $aSectionValue) {
|
||||
if (\is_array($aSectionValue)) {
|
||||
$aData[$sSectionKey] = [];
|
||||
foreach ($aSectionValue as $sParamKey => $mParamValue) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue