From e3e1240a19ef40b57ad182267adcf362a9e3b72a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 15 Dec 2023 13:50:55 +0100 Subject: [PATCH] Fix: Do not pass null to function that expects string --- include/version.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/version.inc b/include/version.inc index 75afdc8463..e42cd35ce6 100644 --- a/include/version.inc +++ b/include/version.inc @@ -82,7 +82,7 @@ $RELEASES = (function () { function release_get_latest() { global $RELEASES; - $version = null; + $version = '0.0.0'; $current = null; foreach ($RELEASES as $versions) { foreach ($versions as $ver => $info) {