From 8d309a131faf0138e4bad7f0f70092751fea765a Mon Sep 17 00:00:00 2001 From: metalwolf Date: Fri, 18 May 2018 15:34:35 -0500 Subject: [PATCH] patch 3.1.1 --- include/core/WALanguage.lib | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/core/WALanguage.lib b/include/core/WALanguage.lib index cb85a85..5098d59 100644 --- a/include/core/WALanguage.lib +++ b/include/core/WALanguage.lib @@ -239,6 +239,7 @@ class WALanguage extends WAClass implements \ArrayAccess, \Iterator, \Countable $data['id'] = $this->id; $data['lang'] = $this->lang; $data['entries'] = $this->entries; + $data['attributes'] = $this->attributes; } protected function unserial($data) @@ -246,6 +247,7 @@ class WALanguage extends WAClass implements \ArrayAccess, \Iterator, \Countable $this->id = $data['id']; $this->lang = $data['lang']; $this->entries = $data['entries']; + $this->attributes = $data['attributes']; } public function __toString()