Skip to content

v1.9.3

Compare
Choose a tag to compare
@kresnasatya kresnasatya released this 15 Mar 04:18
· 9 commits to main since this release
a272118

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