From: Michael Date: Fri, 22 Dec 2017 14:56:40 +0000 (+0000) Subject: Only include the update.php, when really needed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=00c6261daeb01a2972f16234b62c8e73da9e6c38;p=friendica.git Only include the update.php, when really needed --- diff --git a/boot.php b/boot.php index 245fdc9035..4571e0aa3a 100644 --- a/boot.php +++ b/boot.php @@ -37,7 +37,6 @@ require_once 'include/datetime.php'; require_once 'include/pgettext.php'; require_once 'include/nav.php'; require_once 'include/identity.php'; -require_once 'update.php'; define('FRIENDICA_PLATFORM', 'Friendica'); define('FRIENDICA_CODENAME', 'Asparagus'); @@ -678,6 +677,8 @@ function update_db(App $a) } if ($build != DB_UPDATE_VERSION) { + require_once 'update.php'; + $stored = intval($build); $current = intval(DB_UPDATE_VERSION); if ($stored < $current) {