fix: warning on top of dashboard page (#512)

This commit is contained in:
Miguel Ribeiro
2024-09-02 00:10:26 +02:00
committed by GitHub
parent db542f2c92
commit 905672243b
2 changed files with 7 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
<?php
$version = "v2.23.0";
$version = "v2.23.1";
?>

View File

@@ -14,6 +14,8 @@ if ($settings['disabledToBottom'] === 'true') {
$sql = "SELECT * FROM subscriptions WHERE user_id = :userId ORDER BY next_payment ASC, inactive ASC";
}
$params = array();
if (isset($_COOKIE['sortOrder']) && $_COOKIE['sortOrder'] != "") {
$sort = $_COOKIE['sortOrder'] ?? 'next_payment';
$sortOrder = $sort;
@@ -28,7 +30,6 @@ if (isset($_COOKIE['sortOrder']) && $_COOKIE['sortOrder'] != "") {
$sort = "next_payment";
}
$params = array();
$sql = "SELECT * FROM subscriptions WHERE user_id = :userId";
if (isset($_GET['member'])) {
@@ -105,8 +106,10 @@ $stmt = $db->prepare($sql);
$stmt->bindValue(':userId', $userId, SQLITE3_INTEGER);
foreach ($params as $key => $value) {
$stmt->bindValue($key, $value, SQLITE3_INTEGER);
if (!empty($params)) {
foreach ($params as $key => $value) {
$stmt->bindValue($key, $value, SQLITE3_INTEGER);
}
}
$result = $stmt->execute();