LLMS_Install::update_llms_version( string $version = null )
Update the LifterLMS version record to the latest version
Description Description
Parameters Parameters
- $version
-
(string) (Optional) version number
Default value: null
Return Return
(void)
Source Source
File: includes/class.llms.install.php
public static function update_llms_version( $version = null ) { delete_option( 'lifterlms_current_version' ); add_option( 'lifterlms_current_version', is_null( $version ) ? LLMS()->version : $version ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: