diff options
author | Chris Buechler <cmb@pfsense.org> | 2011-09-01 16:28:09 -0700 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2011-09-01 16:28:09 -0700 |
commit | bc6f12a877cfd593ceddcf1f51d11b0f898eb2d7 (patch) | |
tree | e1c487bc92ba9ac63c2845183beab83c8c849bf1 | |
parent | 28f4d0b841263bd1667fe870ff8d9041ffe0f096 (diff) | |
parent | fc6734020c328afc4cf575a8dd4934f96a6b3ffb (diff) | |
download | pfsense-packages-bc6f12a877cfd593ceddcf1f51d11b0f898eb2d7.tar.gz pfsense-packages-bc6f12a877cfd593ceddcf1f51d11b0f898eb2d7.tar.bz2 pfsense-packages-bc6f12a877cfd593ceddcf1f51d11b0f898eb2d7.zip |
Merge pull request #55 from LostInIgnorance/patch-1
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; } |