Upgrade to v2.3.6

pull/444/head
Joe Prochazka 2018-06-22 11:00:29 -04:00
rodzic 8f6cbc3f58
commit 2d7ec771e5
4 zmienionych plików z 12 dodań i 2 usunięć

Wyświetl plik

@ -11,6 +11,7 @@ The following is a history of the changes made to this project.
* Added switch to force apt update when executing install.sh.
* Updated current Planefinder client versions to 4.1.1.
* Updated current dump1090-fa version to 3.2.3.
* The system page bandwidth meter now maxes out at 150KB/MB per second.
## v2.6.2 *(April 6th, 2018)*

Wyświetl plik

@ -37,7 +37,7 @@
// Check if the portal is installed or needs upgraded.
$thisVersion = "2.6.2";
$thisVersion = "2.6.3";
if (!file_exists($_SERVER['DOCUMENT_ROOT']."/classes/settings.class.php")) {
header ("Location: /install/install.php");

Wyświetl plik

@ -29,7 +29,7 @@
/////////////////////////////////////////////////////////////////////////////////////
// The most current stable release.
$thisVersion = "2.6.2";
$thisVersion = "2.6.3";
// Begin the upgrade process if this release is newer than what is installed.
if (file_exists($_SERVER['DOCUMENT_ROOT'].DIRECTORY_SEPARATOR."classes".DIRECTORY_SEPARATOR."settings.class.php")) {

Wyświetl plik

@ -141,6 +141,15 @@
$version = "2.6.2";
}
// UPGRADE TO V2.6.3
if ($common->getSetting("version") == "2.6.2" && $success) {
$json = file_get_contents("http://localhost/install/upgrade-v2.6.3.php");
$results = json_decode($json, TRUE);
$success = $results['success'];
$message = $results['message'];
$version = "2.6.3";
}
require_once($_SERVER['DOCUMENT_ROOT'].DIRECTORY_SEPARATOR."admin".DIRECTORY_SEPARATOR."includes".DIRECTORY_SEPARATOR."header.inc.php");
// Display the instalation wizard.