From cdffe0f2bf253803a7e60d3816f97b4d317fc125 Mon Sep 17 00:00:00 2001 From: lepool Date: Fri, 26 Jan 2018 20:25:16 +0100 Subject: [PATCH] Risoluzione problema installazione, Fix #130 --- src/Update.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Update.php b/src/Update.php index 5ac0be960..5194d6e19 100644 --- a/src/Update.php +++ b/src/Update.php @@ -242,7 +242,8 @@ class Update if ($database->isInstalled()) { $result = self::getDatabaseVersion(); } else { - $result = end(self::getCoreUpdates()); + $updatelist = self::getCoreUpdates(); + $result = end($updatelist); } }