Skip to content

Commit

Permalink
Fix: Do not pass null to function that expects string (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored Feb 12, 2024
1 parent bdd0a1c commit 026b509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/version.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 026b509

Please sign in to comment.