diff options
Diffstat (limited to 'http-cache.tcl')
-rwxr-xr-x | http-cache.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/http-cache.tcl b/http-cache.tcl index 25e5f0d..f377770 100755 --- a/http-cache.tcl +++ b/http-cache.tcl @@ -27,9 +27,9 @@ namespace eval cache { } } - #TODO: Pre-cache all precache files. - foreach i $precache { - add [string cat $::http::root $i] + # Process the precache + foreach i $::http::configure::precache { + add [string cat $::http::configure::srv $i] } } |