diff options
author | LostInIgnorance <LostInIgnorance@gmail.com> | 2011-09-01 15:02:58 -0500 |
---|---|---|
committer | LostInIgnorance <LostInIgnorance@gmail.com> | 2011-09-01 15:02:58 -0500 |
commit | fc6734020c328afc4cf575a8dd4934f96a6b3ffb (patch) | |
tree | 8c0d9ee3d4c329fface976c3a3d63f7e6d8839cc | |
parent | 869fb3e30bf1fee096c4fe3bf9e8a421013a1191 (diff) | |
download | pfsense-packages-fc6734020c328afc4cf575a8dd4934f96a6b3ffb.tar.gz pfsense-packages-fc6734020c328afc4cf575a8dd4934f96a6b3ffb.tar.bz2 pfsense-packages-fc6734020c328afc4cf575a8dd4934f96a6b3ffb.zip |
Fixed AVDB file names to correctly load information
-rw-r--r-- | config/widget-antivirus/antivirus_status.widget.php | 6 |
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; } |