Project

General

Profile

Bug #19754 » 10040.diff

Administrator Admin, 2009-01-01 13:50

View differences:

typo3/sysext/cms/tslib/class.tslib_fe.php (working copy)
// No cache
if ($this->config['config']['no_cache']) { $this->set_no_cache(); } // Set $this->no_cache true if the config.no_cache value is set!
// merge GET with _DEFAULT_GET_VARS
if (is_array($this->config['config']['_DEFAULT_GET_VARS.'])) {
$getVars = t3lib_div::_GET();
foreach ($this->config['config']['_DEFAULT_GET_VARS.'] as $key => $value) {
if (!isset($getVars[$key])) {
$getVars[$key] = $value;
}
}
// Write values back to $_GET:
t3lib_div::_GETset($getVars);
}
// Hook for postProcessing the configuration array
if (is_array($this->TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_fe.php']['configArrayPostProc'])) {
(1-1/2)