LLMS_Session::maybe_save_data()

Save session data if not clean


Description Description

Callback for shutdown action hook.


Top ↑

Return Return

(boolean)


Top ↑

Source Source

File: includes/class.llms.session.php

235
236
237
238
239
240
241
242
243
public function maybe_save_data() {
 
    if ( ! $this->is_clean ) {
        return $this->save( $this->expires );
    }
 
    return false;
 
}

Top ↑

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.