diff options
author | Chris Buechler <cmb@pfsense.org> | 2011-09-05 13:15:56 -0700 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2011-09-05 13:15:56 -0700 |
commit | 01ead3e17ba559e32ff40bc9507c083dce91b72a (patch) | |
tree | b2d725ca0bbaace411afe73b1d1da924fbfeaf44 | |
parent | 60495e28102618719051d327f59cdfda5e46036c (diff) | |
parent | 5395e0158bd60ecdaefd9913ad1ddedc0b244618 (diff) | |
download | pfsense-packages-01ead3e17ba559e32ff40bc9507c083dce91b72a.tar.gz pfsense-packages-01ead3e17ba559e32ff40bc9507c083dce91b72a.tar.bz2 pfsense-packages-01ead3e17ba559e32ff40bc9507c083dce91b72a.zip |
Merge pull request #56 from LostInIgnorance/patch-2
Changed to correctly show both file types for virus definitions
-rw-r--r-- | config/widget-antivirus/antivirus_status.widget.php | 4 |
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; |