diff options
author | Dennis Neuhaeuser <dn@arbor.de> | 2015-04-11 21:58:49 +0200 |
---|---|---|
committer | Dennis Neuhaeuser <dn@arbor.de> | 2015-04-11 21:58:49 +0200 |
commit | a2721d5da1434007c433225f86774948d03ec548 (patch) | |
tree | 46a6934e6b6aecd8eea736059eb30f1bc1c77e99 /config/squid3/34 | |
parent | a91d24350c263e153f8f577fbc23b56b65b84062 (diff) | |
download | pfsense-packages-a2721d5da1434007c433225f86774948d03ec548.tar.gz pfsense-packages-a2721d5da1434007c433225f86774948d03ec548.tar.bz2 pfsense-packages-a2721d5da1434007c433225f86774948d03ec548.zip |
add table area to display clamav logs
- adds a table to the tab "realtime" for virus log displaying
- corrected link to tab "antivirus"
Diffstat (limited to 'config/squid3/34')
-rwxr-xr-x | config/squid3/34/squid_monitor.php | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/config/squid3/34/squid_monitor.php b/config/squid3/34/squid_monitor.php index 84bf08e9..60a366fc 100755 --- a/config/squid3/34/squid_monitor.php +++ b/config/squid3/34/squid_monitor.php @@ -92,7 +92,7 @@ include("head.inc"); $tab_array[] = array(gettext("General"), false, "/pkg_edit.php?xml=squid.xml&id=0"); $tab_array[] = array(gettext("Remote Cache"), false, "/pkg.php?xml=squid_upstream.xml"); $tab_array[] = array(gettext("Local Cache"), false, "/pkg_edit.php?xml=squid_cache.xml&id=0"); - $tab_array[] = array(gettext("Antivirus"), false, "/pkg_edit.php?xml=antivirus.xml&id=0"); + $tab_array[] = array(gettext("Antivirus"), false, "/pkg_edit.php?xml=squid_antivirus.xml&id=0"); $tab_array[] = array(gettext("ACLs"), false, "/pkg_edit.php?xml=squid_nac.xml&id=0"); $tab_array[] = array(gettext("Traffic Mgmt"), false, "/pkg_edit.php?xml=squid_traffic.xml&id=0"); $tab_array[] = array(gettext("Authentication"), false, "/pkg_edit.php?xml=squid_auth.xml&id=0"); @@ -184,6 +184,26 @@ include("head.inc"); </tr> </tbody> </table> + <!-- clamav Table --> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tbody> + <tr> + <td> + <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td colspan="6" class="listtopic"><center><?=gettext("clamav Logs"); ?><center></td> + </tr> + <tbody id="clamView"> + <script language="JavaScript"> + // Call function to show squidGuard log + showLog('clamView', 'squid_monitor_data.php','clamav'); + </script> + </tbody> + </table> + </td> + </tr> + </tbody> + </table> </div> <?php }?> </td> |