mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Processed with phpcbf
This commit is contained in:
parent
36141d1e9c
commit
d878cbf356
@ -26,7 +26,6 @@
|
|||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
|
|
||||||
<div role="tabpanel" class="tab-pane active" id="summary">
|
<div role="tabpanel" class="tab-pane active" id="summary">
|
||||||
<h4 class="mt-3"><?php echo _("Internet connection"); ?></h4>
|
<h4 class="mt-3"><?php echo _("Internet connection"); ?></h4>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@ -45,8 +44,8 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php
|
<?php
|
||||||
$checkAccess=True;
|
$checkAccess=true;
|
||||||
include("includes/internetRoute.php");
|
require "includes/internetRoute.php";
|
||||||
if (isset($rInfo["error"]) || empty($rInfo)) {
|
if (isset($rInfo["error"]) || empty($rInfo)) {
|
||||||
echo "<tr><td colspan=5>No route to the internet found</td></tr>";
|
echo "<tr><td colspan=5>No route to the internet found</td></tr>";
|
||||||
} else {
|
} else {
|
||||||
@ -55,8 +54,8 @@
|
|||||||
echo "<td>".$route["interface"]."</td>";
|
echo "<td>".$route["interface"]."</td>";
|
||||||
echo "<td>".$route["ip-address"]."</td>";
|
echo "<td>".$route["ip-address"]."</td>";
|
||||||
echo "<td>".$route["gateway"]."<br>".$route["gw-name"]."</td>";
|
echo "<td>".$route["gateway"]."<br>".$route["gw-name"]."</td>";
|
||||||
echo "<td>".$route["access-ip"]."<br>".ACCESS_CHECK_IP."</td>";
|
echo "<td>".$route["access-ip"]."<br>".RASPI_ACCESS_CHECK_IP."</td>";
|
||||||
echo "<td>".$route["access-dns"]."<br>".ACCESS_CHECK_DNS."</td>";
|
echo "<td>".$route["access-dns"]."<br>".RASPI_ACCESS_CHECK_DNS."</td>";
|
||||||
echo "</tr>";
|
echo "</tr>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user