LLMS_Session::maybe_start_session()

Starts a new session if one hasn’t started yet.


Description Description


Source Source

File: includes/class.llms.session.php

	public function maybe_start_session() {

		if ( ! session_id() && ! headers_sent() ) {
			session_start();
		}
	}

Top ↑

User Contributed Notes User Contributed Notes

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