aboutsummaryrefslogtreecommitdiffstats
path: root/config/squid3
diff options
context:
space:
mode:
authorDennis Neuhaeuser <dn@arbor.de>2015-04-11 21:58:49 +0200
committerDennis Neuhaeuser <dn@arbor.de>2015-04-11 21:58:49 +0200
commita2721d5da1434007c433225f86774948d03ec548 (patch)
tree46a6934e6b6aecd8eea736059eb30f1bc1c77e99 /config/squid3
parenta91d24350c263e153f8f577fbc23b56b65b84062 (diff)
downloadpfsense-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')
-rwxr-xr-xconfig/squid3/34/squid_monitor.php22
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&amp;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&amp;id=0");
- $tab_array[] = array(gettext("Antivirus"), false, "/pkg_edit.php?xml=antivirus.xml&amp;id=0");
+ $tab_array[] = array(gettext("Antivirus"), false, "/pkg_edit.php?xml=squid_antivirus.xml&amp;id=0");
$tab_array[] = array(gettext("ACLs"), false, "/pkg_edit.php?xml=squid_nac.xml&amp;id=0");
$tab_array[] = array(gettext("Traffic Mgmt"), false, "/pkg_edit.php?xml=squid_traffic.xml&amp;id=0");
$tab_array[] = array(gettext("Authentication"), false, "/pkg_edit.php?xml=squid_auth.xml&amp;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>