Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
573 B
32 lines
573 B
<?php |
|
/** |
|
* @package util |
|
*/ |
|
|
|
/* |
|
* require boot.php |
|
*/ |
|
require_once("boot.php"); |
|
|
|
$a = new App; |
|
@include(".htconfig.php"); |
|
|
|
$lang = get_browser_language(); |
|
load_translation_table($lang); |
|
|
|
require_once("include/dba.php"); |
|
$db = new dba($db_host, $db_user, $db_pass, $db_data, false); |
|
unset($db_host, $db_user, $db_pass, $db_data); |
|
|
|
$build = get_config('system','build'); |
|
|
|
echo "Old DB VERSION: " . $build . "\n"; |
|
echo "New DB VERSION: " . DB_UPDATE_VERSION . "\n"; |
|
|
|
|
|
if($build != DB_UPDATE_VERSION) { |
|
echo "Updating database..."; |
|
check_db($a); |
|
echo "Done\n"; |
|
} |
|
|
|
|