From 043eec9c26db441cd50ba7f827cf0b3993a6984e Mon Sep 17 00:00:00 2001 From: LC Date: Tue, 21 Nov 2023 18:09:26 +0100 Subject: [PATCH] Version 4.5 --- module/album/album.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/album/album.php b/module/album/album.php index e55f8be..f32ddfa 100644 --- a/module/album/album.php +++ b/module/album/album.php @@ -40,9 +40,9 @@ class album extends common { // Versions < 4.4 : versionData absent if( null === $this->getData(['module', $this->getUrl(0), 'config', 'versionData']) ) $this->setData(['module', $this->getUrl(0), 'config', 'versionData', '4.3']); - // Version 4.4 - if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'versionData']), '4.4', '<') ) { - $this->setData(['module', $this->getUrl(0), 'config', 'versionData','4.4']); + // Version 4.5 + if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'versionData']), '4.5', '<') ) { + $this->setData(['module', $this->getUrl(0), 'config', 'versionData','4.5']); } }