path . "version.php")) { if ($humanreadable) return $version; return $release; } return false; } /** * Determines whether or not the database needs to be upgraded. * * @return true|false Depending on whether or not the db version matches the code version */ function db_upgrade_check() { $dbversion = (int) get_datalist('version'); $version = get_version(); if ($version > $dbversion) { return true; } return false; } ?>