mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +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()
|
public function jsonSerialize()
|
||||||
{
|
{
|
||||||
$aData = [];
|
$aData = [];
|
||||||
foreach ($this->aData as $sSectionKey => $aSectionValue) {
|
foreach (parent::jsonSerialize() as $sSectionKey => $aSectionValue) {
|
||||||
if (\is_array($aSectionValue)) {
|
if (\is_array($aSectionValue)) {
|
||||||
$aData[$sSectionKey] = [];
|
$aData[$sSectionKey] = [];
|
||||||
foreach ($aSectionValue as $sParamKey => $mParamValue) {
|
foreach ($aSectionValue as $sParamKey => $mParamValue) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue