From 67c7d83a728dc747e62e88e84cdef8d84005f903 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Mon, 20 Feb 2017 14:06:04 +0100 Subject: [PATCH] use bootstrap theme --- install/update.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/install/update.php b/install/update.php index afc7e3e46..23e1714ce 100644 --- a/install/update.php +++ b/install/update.php @@ -33,11 +33,14 @@ if (!file_exists($configDir."/ENABLE_INSTALL_TOOL")) { exit; } -$theme = "blue"; +$theme = "bootstrap"; require_once("../inc/inc.Language.php"); +include "../languages/en_GB/lang.inc"; require_once("../inc/inc.ClassUI.php"); UI::htmlStartPage('Database update'); +UI::globalBanner(); +UI::contentStart(); UI::contentHeading("SeedDMS Installation for version ".$_GET['version']); UI::contentContainerStart(); @@ -104,6 +107,11 @@ if($rec = $res->fetch(PDO::FETCH_ASSOC)) { } $db = null; +// just remove info for web page installation +$settings->_printDisclaimer = false; +$settings->_footNote = false; +// end of the page UI::contentContainerEnd(); +UI::contentEnd(); UI::htmlEndPage(); ?>