Added more article template variables.

This commit is contained in:
JT Smith 2003-05-24 15:58:15 +00:00
parent 166ad80fe2
commit da7d400c82
3 changed files with 28 additions and 11 deletions

View file

@ -145,7 +145,7 @@ sub gateway {
$url = append($url,$_[1]);
}
if ($session{setting}{preventProxyCache} == 1) {
$url = append($url,randint(0,1000).';'.time());
$url = append($url,"noCache=".randint(0,1000).';'.time());
}
return $url;
}
@ -203,7 +203,7 @@ sub page {
$url = append($url,$_[0]);
}
if ($session{setting}{preventProxyCache} == 1) {
$url = append($url,randint(0,1000).';'.time());
$url = append($url,"noCache=".randint(0,1000).';'.time());
}
return $url;
}