mirror of
https://github.com/pi-hole/web.git
synced 2026-05-08 09:39:05 +01:00
Merge pull request #1007 from pi-hole/release/v4.3.2
Release v4.3.2 merge to development for update.
This commit is contained in:
@@ -45,9 +45,7 @@ Make no mistake: **your support is absolutely vital to help keep us innovating!*
|
||||
Sending a donation using our links below is **extremely helpful** in offsetting a portion of our monthly expenses:
|
||||
|
||||
- <img src="https://pi-hole.github.io/graphics/Badges/paypal-badge-black.svg" width="24" height="24" alt="PP"/> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3J2L3Z4DHW9UY">Donate via PayPal</a><br/>
|
||||
- <img src="https://pi-hole.github.io/graphics/Badges/bitcoin-badge-black.svg" width="24" height="24" alt="BTC"/> [Bitcoin](https://commerce.coinbase.com/checkout/fb7facaf-bebd-46be-bb77-b358f4546763): <code>1GKnevUnVaQM2pQieMyeHkpr8DXfkpfAtL</code></br>
|
||||
- <img src="https://pi-hole.github.io/graphics/Badges/bitcoin-badge-black.svg" width="24" height="24" alt="BTC"/> [Bitcoin Cash](https://commerce.coinbase.com/checkout/fb7facaf-bebd-46be-bb77-b358f4546763): <code>qqh25hlmqaj99xraw00e47xmf8sysnyxhyww2d7dnh</code></br>
|
||||
- <img src="https://pi-hole.github.io/graphics/Badges/ethereum-badge-black.svg" width="24" height="24" alt="BTC"/> [Ethereum](https://commerce.coinbase.com/checkout/fb7facaf-bebd-46be-bb77-b358f4546763): <code>0xF00aF43d2431BAD585056492b310e48eC40D87e8</code>
|
||||
- <img src="https://pi-hole.github.io/graphics/Badges/bitcoin-badge-black.svg" width="24" height="24" alt="BTC"/> [Bitcoin, Bitcoin Cash, Ethereum, Litecoin](https://commerce.coinbase.com/checkout/dd304d04-f324-4a77-931b-0db61c77a41b)
|
||||
|
||||
### Alternative support
|
||||
If you'd rather not [donate](https://pi-hole.net/donate/) (_which is okay!_), there are other ways you can help support us:
|
||||
|
||||
@@ -142,7 +142,7 @@ $(document).ready(function() {
|
||||
"processing": true,
|
||||
"order" : [[5, "desc"]],
|
||||
"columns": [
|
||||
{data: "ip", "width" : "10%", "render": $.fn.dataTable.render.text(), "orderable": false },
|
||||
{data: "ip", "type": "ip-address", "width" : "10%", "render": $.fn.dataTable.render.text() },
|
||||
{data: "hwaddr", "width" : "10%", "render": $.fn.dataTable.render.text() },
|
||||
{data: "interface", "width" : "4%", "render": $.fn.dataTable.render.text() },
|
||||
{data: "name", "width" : "15%", "render": $.fn.dataTable.render.text() },
|
||||
|
||||
+5
-5
@@ -799,7 +799,7 @@ if (isset($_GET['tab']) && in_array($_GET['tab'], array("sysadmin", "blocklists"
|
||||
<div class="radio">
|
||||
<label><input type="radio" name="DNSinterface" value="single"
|
||||
<?php if ($DNSinterface == "single"){ ?>checked<?php } ?>>
|
||||
<strong>Listen only on interface <?php echo $piHoleInterface; ?></strong>
|
||||
<strong>Listen only on interface <?php echo htmlentities($piHoleInterface); ?></strong>
|
||||
</label>
|
||||
</div>
|
||||
<div class="radio">
|
||||
@@ -1223,19 +1223,19 @@ if (isset($_GET['tab']) && in_array($_GET['tab'], array("sysadmin", "blocklists"
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">Pi-hole Ethernet Interface:</th>
|
||||
<td><?php echo $piHoleInterface; ?></td>
|
||||
<td><?php echo htmlentities($piHoleInterface); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Pi-hole IPv4 address:</th>
|
||||
<td><?php echo $piHoleIPv4; ?></td>
|
||||
<td><?php echo htmlentities($piHoleIPv4); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Pi-hole IPv6 address:</th>
|
||||
<td><?php echo $piHoleIPv6; ?></td>
|
||||
<td><?php echo htmlentities($piHoleIPv6); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Pi-hole hostname:</th>
|
||||
<td><?php echo $hostname; ?></td>
|
||||
<td><?php echo htmlentities($hostname); ?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user