v1.9.3
Please update user()
method in application/libraries/Webguard.php
in CodeIgniter 3.
public function user()
{
$unserialize_session = unserialize($_SESSION['serialize_session']);
foreach ($unserialize_session as $key => $value) {
$this->user->{$key} = $value;
}
return $this;
}
By update this method, the user properties will be set automatically with loop instead you set it manually.
Full Changelog: v1.9.2...v1.9.3