aboutsummaryrefslogtreecommitdiffstats
path: root/config/widget-antivirus
diff options
context:
space:
mode:
authorLostInIgnorance <LostInIgnorance@gmail.com>2011-09-01 15:02:58 -0500
committerLostInIgnorance <LostInIgnorance@gmail.com>2011-09-01 15:02:58 -0500
commitfc6734020c328afc4cf575a8dd4934f96a6b3ffb (patch)
tree8c0d9ee3d4c329fface976c3a3d63f7e6d8839cc /config/widget-antivirus
parent869fb3e30bf1fee096c4fe3bf9e8a421013a1191 (diff)
downloadpfsense-packages-fc6734020c328afc4cf575a8dd4934f96a6b3ffb.tar.gz
pfsense-packages-fc6734020c328afc4cf575a8dd4934f96a6b3ffb.tar.bz2
pfsense-packages-fc6734020c328afc4cf575a8dd4934f96a6b3ffb.zip
Fixed AVDB file names to correctly load information
Diffstat (limited to 'config/widget-antivirus')
-rw-r--r--config/widget-antivirus/antivirus_status.widget.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/widget-antivirus/antivirus_status.widget.php b/config/widget-antivirus/antivirus_status.widget.php
index a908d7b8..4dedcb0a 100644
--- a/config/widget-antivirus/antivirus_status.widget.php
+++ b/config/widget-antivirus/antivirus_status.widget.php
@@ -70,10 +70,10 @@ 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("bytecode.cld");
+ $db .= havp_avdb_info("daily.cvd");
+ $db .= havp_avdb_info("bytecode.cvd");
$db .= havp_avdb_info("main.cvd");
- $db .= havp_avdb_info("safebrowsing.cld");
+ $db .= havp_avdb_info("safebrowsing.cvd");
$db .= '</tbody></table>';
return $db;
}