aboutsummaryrefslogtreecommitdiffstats
path: root/config/havp/antivirus.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2010-09-24 08:34:51 -0400
committerjim-p <jimp@pfsense.org>2010-09-24 08:34:51 -0400
commit26df8f0218520786a36e8ec07330e3f91c38e789 (patch)
treeca5ea279f4a6940c59fbd586100eca60ff72f8ca /config/havp/antivirus.php
parent9f368d6015643105a893c9c71a6bd9da296e48d4 (diff)
downloadpfsense-packages-26df8f0218520786a36e8ec07330e3f91c38e789.tar.gz
pfsense-packages-26df8f0218520786a36e8ec07330e3f91c38e789.tar.bz2
pfsense-packages-26df8f0218520786a36e8ec07330e3f91c38e789.zip
More HAVP fixes from vcoque
Diffstat (limited to 'config/havp/antivirus.php')
-rw-r--r--config/havp/antivirus.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/havp/antivirus.php b/config/havp/antivirus.php
index 451918dc..51926681 100644
--- a/config/havp/antivirus.php
+++ b/config/havp/antivirus.php
@@ -254,10 +254,10 @@ if (pfsense_version_A() == '1') {
<?php
$scanlist = get_scanlist();
if (is_array($scanlist))
- foreach($scanlist as $key => $val) {
- echo "<span onclick=\"document.getElementById('scanpath').value='{$val}';\" style=\"cursor: pointer;\">\n";
+ foreach($scanlist as $scan) {
+ echo "<span onclick=\"document.getElementById('scanpath').value='{$scan['path']}';\" style=\"cursor: pointer;\">\n";
echo "<img src='./themes/".$g['theme']."/images/icons/icon_pass.gif'>\n";
- echo "<u>{$key}</u>\n";
+ echo "<u>{$scan['descr']}</u>\n";
echo "</span>";
echo "<br>";
}