We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 149ae5a + 2e6cb34 commit 0fa1b2fCopy full SHA for 0fa1b2f
2 files changed
src/WpStarter/Wordpress/Application.php
@@ -11,7 +11,7 @@ class Application extends \WpStarter\Foundation\Application
11
*
12
* @var string
13
*/
14
- const VERSION = '1.9.6';
+ const VERSION = '1.9.7';
15
16
protected $bootstrappedList = [];
17
src/WpStarter/Wordpress/Model/User.php
@@ -120,7 +120,7 @@ protected function readMissingAttributes()
120
if($allMeta=get_user_meta($user_id)){
121
foreach ($allMeta as $key=>$values){
122
if(!isset($this->data->{$key})) {
123
- $this->data->{$key} = $values[0];
+ $this->data->{$key} = maybe_unserialize($values[0]);
124
}
125
126
0 commit comments