Skip to content

Commit

Permalink
fix: bug introduced on 2.38.0 on the subscriptions dashboard (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellite authored Nov 17, 2024
1 parent e18587d commit f63c543
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions includes/list_subscriptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,14 @@ function printSubscriptions($subscriptions, $sort, $categories, $members, $i18n,
</button>
</div>
<?php
}

$subscriptionExtraClasses = "";
if ($subscription['inactive']) {
$subscriptionExtraClasses .= " inactive";
}
if ($subscription['auto_renew'] != 1) {
$subscriptionExtraClasses .= " manual";
}
$subscriptionExtraClasses = "";
if ($subscription['inactive']) {
$subscriptionExtraClasses .= " inactive";
}
if ($subscription['auto_renew'] != 1) {
$subscriptionExtraClasses .= " manual";
}
?>

Expand Down
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$version = "v2.38.0";
$version = "v2.38.1";
?>

0 comments on commit f63c543

Please sign in to comment.