Skip to content

Commit

Permalink
Merge pull request #1058 from ThaMunsta/settings-online-payment-fix
Browse files Browse the repository at this point in the history
Update settings_online_payment.php
  • Loading branch information
johnnyq authored Sep 20, 2024
2 parents 8498f01 + 65b4f97 commit e714b80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings_online_payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<select class="form-control select2" name="config_stripe_account">
<option value="">- Account -</option>
<?php
$sql_accounts = mysqli_query($mysqli, "SELECT * FROM accounts LEFT JOIN account_types ON account_types.account_type_id = accounts.account_type WHERE account_type_parent = 1 AND account_archived_at IS NULL ORDER BY account_name ASC");
$sql_accounts = mysqli_query($mysqli, "SELECT * FROM accounts WHERE account_archived_at IS NULL ORDER BY account_name ASC");
while ($row = mysqli_fetch_array($sql_accounts)) {
$account_id = intval($row['account_id']);
$account_name = nullable_htmlentities($row['account_name']);
Expand Down

0 comments on commit e714b80

Please sign in to comment.