mirror of https://github.com/friendica/friendica
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
510 B
PHTML
27 lines
510 B
PHTML
12 years ago
|
<?php
|
||
|
|
||
|
require_once("boot.php");
|
||
|
|
||
|
$a = new App;
|
||
|
@include(".htconfig.php");
|
||
|
|
||
|
$lang = get_language();
|
||
|
load_translation_table($lang);
|
||
|
|
||
|
require_once("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_config();
|
||
|
echo "Done\n";
|
||
|
}
|
||
|
|