bbp_is_update()

Compare the bbPress version to the DB version to determine if updating


Description Description


Return Return

(bool) True if update, False if not


Top ↑

Source Source

File: includes/core/update.php

function bbp_is_update() {
	$raw    = (int) bbp_get_db_version_raw();
	$cur    = (int) bbp_get_db_version();
	$retval = (bool) ( $raw < $cur );
	return $retval;
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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