Imported Upstream version 3.4.0
This commit is contained in:
@@ -4,23 +4,21 @@
|
||||
// NagiosQL
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// (c) 2005-2017 by Martin Willisegger
|
||||
// (c) 2005-2018 by Martin Willisegger
|
||||
//
|
||||
// Project : NagiosQL
|
||||
// Component : Installer preprocessing script
|
||||
// Website : http://www.nagiosql.org
|
||||
// Date : $LastChangedDate: 2017-06-22 09:29:35 +0200 (Thu, 22 Jun 2017) $
|
||||
// Author : $LastChangedBy: martin $
|
||||
// Version : 3.3.0
|
||||
// Revision : $LastChangedRevision: 2 $
|
||||
// Website : https://sourceforge.net/projects/nagiosql/
|
||||
// Version : 3.4.0
|
||||
// GIT Repo : https://gitlab.com/wizonet/NagiosQL
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
error_reporting(E_ALL);
|
||||
//
|
||||
// Define common variables
|
||||
// =======================
|
||||
$strErrorMessage = ""; // All error messages (red)
|
||||
$strInfoMessage = ""; // All information messages (green)
|
||||
$strErrorMessage = ''; // All error messages (red)
|
||||
$strInfoMessage = ''; // All information messages (green)
|
||||
//
|
||||
// Start PHP session
|
||||
// =================
|
||||
@@ -28,9 +26,9 @@ session_start([ 'name' => 'nagiosql_install']);
|
||||
//
|
||||
// Include external function/class files
|
||||
// =====================================
|
||||
include("functions/install_class.php");
|
||||
require $preBasePath.'functions/Autoloader.php';
|
||||
functions\Autoloader::register($preBasePath);
|
||||
//
|
||||
// Initialize class
|
||||
// ================
|
||||
$myInstClass = new naginstall;
|
||||
?>
|
||||
$myInstClass = new install\functions\NagInstallClass($_SESSION);
|
||||
|
||||
Reference in New Issue
Block a user