Skip to content

Commit

Permalink
fix: wrong folder for payment method logos (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellite committed Mar 13, 2024
1 parent 2ca8b82 commit f6c1ff2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,7 @@ If you want to trigger an Update of the exchange rates, change your main currenc

![Screenshot](screenshots/wallos-form.png)

![Screenshot](screenshots/wallos-dashboard-mobile-light.png)

![Screenshot](screenshots/wallos-dashboard-mobile-dark.png)
![Screenshot](screenshots/wallos-dashboard-mobile-light.png) ![Screenshot](screenshots/wallos-dashboard-mobile-dark.png)

## Contributing

Expand Down
14 changes: 12 additions & 2 deletions endpoints/payments/add.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,14 +183,24 @@ function resizeAndUploadLogo($uploadedFile, $uploadDir, $name) {
}
}

$sql = "INSERT INTO payment_methods (name, icon, enabled) VALUES (:name, :icon, :enabled)";
// Get the maximum existing ID
$stmt = $db->prepare("SELECT MAX(id) as maxID FROM payment_methods");
$result = $stmt->execute();
$row = $result->fetchArray(SQLITE3_ASSOC);
$maxID = $row['maxID'];

// Ensure the new ID is greater than 31
$newID = max($maxID + 1, 32);

// Insert the new record with the new ID
$sql = "INSERT INTO payment_methods (id, name, icon, enabled) VALUES (:id, :name, :icon, :enabled)";
$stmt = $db->prepare($sql);

$stmt->bindParam(':id', $newID, SQLITE3_INTEGER);
$stmt->bindParam(':name', $name, SQLITE3_TEXT);
$stmt->bindParam(':icon', $icon, SQLITE3_TEXT);
$stmt->bindParam(':enabled', $enabled, SQLITE3_INTEGER);

if ($stmt->execute()) {
$success['success'] = true;
$success['message'] = translate('payment_method_added_successfuly', $i18n);
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 = "v1.16.1";
$version = "v1.16.2";
?>

0 comments on commit f6c1ff2

Please sign in to comment.