Skip to content

Commit 17f7b8b

Browse files
committed
Minor UI update on Client Saved Payment Methods
1 parent cd40a97 commit 17f7b8b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

admin_settings_online_payment_clients.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@
1212

1313
<div class="card-body">
1414

15-
<table class="table tabled-bordered border border-dark">
15+
<table class="table border border-dark">
1616
<thead class="thead-dark">
1717
<tr>
1818
<th>Client</th>
1919
<th>Stripe Customer ID</th>
2020
<th>Stripe Payment ID</th>
21-
<th>Action</th>
21+
<th class="text-center">Action</th>
2222
</tr>
2323
</thead>
2424
<tbody>
2525

2626
<?php
2727
while ($row = mysqli_fetch_array($stripe_clients_sql)) {
2828
$client_id = intval($row['client_id']);
29-
$client_name = sanitizeInput($row['client_name']);
30-
$stripe_id = sanitizeInput($row['stripe_id']);
31-
$stripe_pm = sanitizeInput($row['stripe_pm']);
29+
$client_name = nullable_htmlentities($row['client_name']);
30+
$stripe_id = nullable_htmlentities($row['stripe_id']);
31+
$stripe_pm = nullable_htmlentities($row['stripe_pm']);
3232

3333
?>
3434

@@ -68,4 +68,3 @@
6868

6969
<?php
7070
require_once "includes/footer.php";
71-

0 commit comments

Comments
 (0)