From 026b50992312e79ea91efcb30750aebcb908e76e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 12 Feb 2024 18:12:56 +0100 Subject: [PATCH] Fix: Do not pass null to function that expects string (#901) --- include/version.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/version.inc b/include/version.inc index 99abbaf88a..61b3159296 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) {