diff options
Diffstat (limited to 'etc/inc/pfsense-utils.inc')
-rw-r--r-- | etc/inc/pfsense-utils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index 4334783..556f590 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -2081,7 +2081,7 @@ function process_alias_urltable($name, $url, $freq, $forceupdate=false) { // If the file doesn't exist or is older than update_freq days, fetch a new copy. if (!file_exists($urltable_filename) - || ((time() - filemtime($urltable_filename)) > ($freq * 86400)) + || ((time() - filemtime($urltable_filename)) > ($freq * 86400 - 90)) || $forceupdate) { // Try to fetch the URL supplied |