changed comma to colon to fix problems with macros that use commas as separators

This commit is contained in:
JT Smith 2007-03-05 19:32:11 +00:00
parent ecf0450558
commit 47c65b7d66

View file

@ -174,7 +174,7 @@ sub gateway {
my $url = $self->session->config->get("gateway").'/'.$pageUrl;
$url =~ s/\/+/\//g;
if ($self->session->setting->get("preventProxyCache") == 1 and !$skipPreventProxyCache) {
$url = $self->append($url,"noCache=".randint(0,1000).','.$self->session->datetime->time());
$url = $self->append($url,"noCache=".randint(0,1000).':'.$self->session->datetime->time());
}
if ($pairs) {
$url = $self->append($url,$pairs);