* 'patch-6' of https://github.com/phil-davis/pfsense:
  status_logs_filter_summary make the info box open on initial page load
  status_logs_filter_summary make the info an info box
This commit is contained in:
Stephen Beaver 2016-01-07 10:10:18 -05:00
commit 037d58299a

View File

@ -153,11 +153,14 @@ foreach ($filterlog as $fe) {
}
}
print("<br />");
$infomsg = sprintf('This is a summary of the last %1$s lines of the firewall log (Max %2$s).', $gotlines, $lines);
print_info_box($infomsg, 'info');
$infomsg = sprintf(gettext('This is a summary of the last %1$s lines of the firewall log (Max %2$s).'), $gotlines, $lines);
?>
<div>
<div id="infoblock_open">
<?=print_info_box($infomsg, 'info');?>
</div>
</div>
<script src="d3pie/d3pie.min.js"></script>
<script src="d3pie/d3.min.js"></script>
@ -350,4 +353,4 @@ var pie = new d3pie("pieChart<?=$chartnum?>", {
<?php
include("foot.inc");
?>
?>