Bug #14385 » 0000490-class.t3lib_tstemplate.php.diff
t3lib/class.t3lib_tstemplate.php 24 Mar 2005 16:49:18 -0000 | ||
---|---|---|
// noCache
|
||
$LD['no_cache'] = (trim($page['no_cache']) || $no_cache) ? '&no_cache=1' : '';
|
||
// linkVars
|
||
$LD['linkVars'] = $GLOBALS['TSFE']->linkVars.$addParams;
|
||
// linkVars
|
||
$lV = Array();
|
||
$tmp = explode ('&',$GLOBALS['TSFE']->linkVars);
|
||
while(list($k,$e)=each($tmp)) if ($e) {
|
||
list($k,$v) = explode('=',$e);
|
||
$lV[$k] = $v;
|
||
}
|
||
$tmp = explode ('&',$addParams);
|
||
while(list($k,$e)=each($tmp)) if ($e) {
|
||
list($k,$v) = explode('=',$e);
|
||
$lV[$k] = $v;
|
||
}
|
||
$LD['linkVars'] = t3lib_div::implodeArrayForUrl('',$lV);
|
||
// If simulateStaticDocuments is enabled:
|
||
if ($GLOBALS['TSFE']->config['config']['simulateStaticDocuments']) {
|