aboutsummaryrefslogtreecommitdiffstats
path: root/config/widget-antivirus
diff options
context:
space:
mode:
authorLostInIgnorance <LostInIgnorance@gmail.com>2011-09-03 16:04:43 -0500
committerLostInIgnorance <LostInIgnorance@gmail.com>2011-09-03 16:04:43 -0500
commit5395e0158bd60ecdaefd9913ad1ddedc0b244618 (patch)
tree2eb9910603a743facda3fddab1fa0b11c500e989 /config/widget-antivirus
parent2c102f579e66efcc164d13cde3e11255b516e006 (diff)
downloadpfsense-packages-5395e0158bd60ecdaefd9913ad1ddedc0b244618.tar.gz
pfsense-packages-5395e0158bd60ecdaefd9913ad1ddedc0b244618.tar.bz2
pfsense-packages-5395e0158bd60ecdaefd9913ad1ddedc0b244618.zip
Changed to correctly show both file types for virus definitions
Diffstat (limited to 'config/widget-antivirus')
-rw-r--r--config/widget-antivirus/antivirus_status.widget.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/widget-antivirus/antivirus_status.widget.php b/config/widget-antivirus/antivirus_status.widget.php
index 4dedcb0a..bcd057b3 100644
--- a/config/widget-antivirus/antivirus_status.widget.php
+++ b/config/widget-antivirus/antivirus_status.widget.php
@@ -70,9 +70,13 @@ function dwg_avbases_info()
{
$db = '<table width="100%" border="0" cellspacing="0" cellpadding="1" ><tbody>';
$db .= '<tr class="vncellt" ><td>Database</td><td>Date</td><td>Ver.</td><td>Builder</td></tr>';
+ $db .= havp_avdb_info("daily.cld");
$db .= havp_avdb_info("daily.cvd");
+ $db .= havp_avdb_info("bytecode.cld");
$db .= havp_avdb_info("bytecode.cvd");
+ $db .= havp_avdb_info("main.cld");
$db .= havp_avdb_info("main.cvd");
+ $db .= havp_avdb_info("safebrowsing.cld");
$db .= havp_avdb_info("safebrowsing.cvd");
$db .= '</tbody></table>';
return $db;