changed comma to colon to fix problems with macros that use commas as separators
This commit is contained in:
parent
ecf0450558
commit
47c65b7d66
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue