LLMS_Install::check_version()

Checks the current LLMS version and runs installer if required


Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.install.php

	public static function check_version() {
		if ( ! defined( 'IFRAME_REQUEST' ) && get_option( 'lifterlms_current_version' ) !== llms()->version ) {
			self::install();
			do_action( 'lifterlms_updated' );
		}

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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