Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add absent <thead> tags #1991

Merged
merged 2 commits into from Dec 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 12 additions & 8 deletions auditlog.php
Expand Up @@ -23,12 +23,14 @@
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Domain</th>
<th>Hits</th>
<th>Actions</th>
<th>Domain</th>
<th>Hits</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand All @@ -51,12 +53,14 @@
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Domain</th>
<th>Hits</th>
<th>Actions</th>
<th>Domain</th>
<th>Hits</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand Down
30 changes: 18 additions & 12 deletions db_lists.php
Expand Up @@ -65,12 +65,14 @@
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Domain</th>
<th>Hits</th>
<th>Frequency</th>
<th>Domain</th>
<th>Hits</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand All @@ -92,12 +94,14 @@
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Domain</th>
<th>Hits</th>
<th>Frequency</th>
<th>Domain</th>
<th>Hits</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand All @@ -119,12 +123,14 @@
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Client</th>
<th>Requests</th>
<th>Frequency</th>
<th>Client</th>
<th>Requests</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand Down
40 changes: 24 additions & 16 deletions index.php
Expand Up @@ -188,12 +188,14 @@ function getinterval()
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Domain</th>
<th>Hits</th>
<th>Frequency</th>
<th>Domain</th>
<th>Hits</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand All @@ -215,12 +217,14 @@ function getinterval()
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Domain</th>
<th>Hits</th>
<th>Frequency</th>
<th>Domain</th>
<th>Hits</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand All @@ -244,12 +248,14 @@ function getinterval()
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Client</th>
<th>Requests</th>
<th>Frequency</th>
<th>Client</th>
<th>Requests</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand All @@ -272,12 +278,14 @@ function getinterval()
<div class="box-body">
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
<thead>
<tr>
<th>Client</th>
<th>Requests</th>
<th>Frequency</th>
<th>Client</th>
<th>Requests</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
Expand Down
14 changes: 9 additions & 5 deletions settings.php
Expand Up @@ -717,11 +717,13 @@ function convertseconds($argument)
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered">
<thead>
<tr>
<th colspan="2">IPv4</th>
<th colspan="2">IPv6</th>
<th>Name</th>
</tr>
</thead>
<?php foreach ($DNSserverslist as $key => $value) { ?>
<tr>
<?php if (isset($value["v4_1"])) { ?>
Expand Down Expand Up @@ -939,11 +941,13 @@ function convertseconds($argument)
</div>
<div class="input-group">
<table class="table table-bordered">
<tr>
<th>Local network in <a href="https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing" rel="noopener" target="_blank">CIDR notation</a></th>
<th>IP address of your DHCP server (router)</th>
<th>Local domain name (optional)</th>
</tr>
<thead>
<tr>
<th>Local network in <a href="https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing" target="_blank">CIDR notation</a></th>
<th>IP address of your DHCP server (router)</th>
<th>Local domain name (optional)</th>
</tr>
</thead>
<tr>
<td>
<input type="text" name="rev_server_cidr" placeholder="192.168.0.0/16" class="form-control" autocomplete="off" spellcheck="false" autocapitalize="none" autocorrect="off"
Expand Down