diff options
Diffstat (limited to 'config/havp/havp.inc')
-rw-r--r-- | config/havp/havp.inc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config/havp/havp.inc b/config/havp/havp.inc index 0c2f688b..072d90b4 100644 --- a/config/havp/havp.inc +++ b/config/havp/havp.inc @@ -1617,9 +1617,12 @@ function havp_get_scan_log() function havp_get_filescanlist() { $slist = array(); - $slist['Squid cache path (scan you squid cache now).'] = '/var/squid'; - $slist['Common DB path.'] = '/var/db'; - $slist['Temp path'] = '/tmp'; + $slist[0]['descr'] = 'Squid cache path (scan you squid cache now).'; + $slist[0]['path'] = '/var/squid'; + $slist[1]['descr'] = 'Common DB path.'; + $slist[1]['path'] = '/var/db'; + $slist[2]['descr'] = 'Temp path.'; + $slist[2]['path'] = '/tmp'; return $slist; } |