From af579a543ac0e5098f1bcfd641d6e5ab1df48ef8 Mon Sep 17 00:00:00 2001 From: TimZ99 Date: Wed, 12 Aug 2020 19:11:45 +0200 Subject: [PATCH] Added missing upgrade lines --- src/psm/Util/Install/Installer.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/psm/Util/Install/Installer.php b/src/psm/Util/Install/Installer.php index cd335d07..d7c05472 100644 --- a/src/psm/Util/Install/Installer.php +++ b/src/psm/Util/Install/Installer.php @@ -362,6 +362,9 @@ class Installer if (version_compare($version_from, '3.5.0', '<')) { $this->upgrade350(); } + if (version_compare($version_from, '3.6.0', '<')) { + $this->upgrade360(); + } psm_update_conf('version', $version_to); }