distantnative / retour-for-kirby

Kirby CMS plugin to manage redirects and track 404s right from the Panel
https://distantnative.com/retour-for-kirby/
MIT License
135 stars 15 forks source link

Throws version exception, although Kirby 3.7.4 is running #313

Closed owzim closed 1 year ago

owzim commented 2 years ago

Describe the bug

An exception is thrown

Retour 4.3.1 supports Kirby 3.7.4 to 3.8.x

Steps to reproduce

Install kirby 3.7.4 then install retour

Solution

version_compare(Kirby::version() ?? '0.0.0', '3.7.4', '<=') === true

should be

version_compare(Kirby::version() ?? '0.0.0', '3.7.4', '<') === true
distantnative commented 1 year ago