LLMS_Install::update_db_version( string $version = null )
Update the LifterLMS DB record to the latest version
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_db_version( $version = null ) { delete_option( 'lifterlms_db_version' ); add_option( 'lifterlms_db_version', is_null( $version ) ? llms()->version : $version ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.4.3 | Unknown. |
3.0.0 | Introduced. |