summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-12-15 08:02:01 -0200
committerRenato Botelho <renato@netgate.com>2015-12-15 08:02:01 -0200
commita5856dcb190dd551eb7e49b90535e48bb0d91510 (patch)
tree7c14e910542a7c655059d304e0bbe3cfcb02b877 /src/usr/local/www
parentc3ba0f7e457a1a40804827a11d5c29779da81591 (diff)
parent13474eee45681c8fe02c03637e875b1c60505629 (diff)
downloadpfsense-a5856dcb190dd551eb7e49b90535e48bb0d91510.zip
pfsense-a5856dcb190dd551eb7e49b90535e48bb0d91510.tar.gz
Merge pull request #2232 from NOYB/Status_-_System_Logs_-_Sort_Header
Diffstat (limited to 'src/usr/local/www')
-rwxr-xr-xsrc/usr/local/www/status_logs.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/usr/local/www/status_logs.php b/src/usr/local/www/status_logs.php
index 5e52393..3f8e983 100755
--- a/src/usr/local/www/status_logs.php
+++ b/src/usr/local/www/status_logs.php
@@ -435,25 +435,25 @@ if (!$rawfilter) {
<div class="table-responsive">
<table class="table table-striped table-hover table-condensed sortable-theme-bootstrap" data-sortable>
<thead>
- <tr>
+ <tr style="white-space:nowrap;">
<th><?=gettext("Time")?></th>
<th><?=gettext("Process")?></th>
- <th class="col-md-1"><?=gettext("PID")?></th>
- <th><?=gettext("Message")?></th>
+ <th><?=gettext("PID")?></th>
+ <th style="width:100%"><?=gettext("Message")?></th>
</tr>
</thead>
<tbody>
<?php
foreach ($filterlog as $filterent) {
?>
- <tr>
- <td style="white-space:nowrap;">
+ <tr style="white-space:nowrap;">
+ <td>
<?=htmlspecialchars($filterent['time'])?>
</td>
- <td style="white-space:nowrap;">
+ <td>
<?=htmlspecialchars($filterent['process'])?>
</td>
- <td style="white-space:nowrap;">
+ <td>
<?=htmlspecialchars($filterent['pid'])?>
</td>
<td style="word-wrap:break-word; word-break:break-all; white-space:normal">
@@ -479,9 +479,9 @@ if (!$rawfilter) {
<div class="panel panel-default">
<div class="panel-heading"><h2 class="panel-title"><?=gettext("Last ")?><?=$nentries?> <?=gettext($allowed_logs[$logfile]["name"])?><?=gettext(" log entries")?></h2></div>
<div class="table table-responsive">
- <table class="table table-striped table-hover">
+ <table class="table table-striped table-hover table-condensed sortable-theme-bootstrap" data-sortable>
<thead>
- <tr>
+ <tr style="white-space:nowrap;">
<th><?=gettext("Time")?></th>
<th style="width:100%"><?=gettext("Message")?></th>
</tr>
OpenPOWER on IntegriCloud