Bug #17627 » patch_6395.diff
typo3_src-4.2.2/t3lib/class.t3lib_tstemplate.php 2008-11-14 00:20:25.000000000 +0100 | ||
---|---|---|
reset($this->constants);
|
||
while(list($k)=each($this->constants)) {
|
||
$this->constants[$k]=t3lib_TSparser::checkIncludeLines($this->constants[$k]);
|
||
$md5 = md5($this->constants[$k]);
|
||
$this->rowSum[] = Array($k, 'constants', $md5);
|
||
}
|
||
reset($this->config);
|
||
while(list($k)=each($this->config)) {
|
||
$this->config[$k]=t3lib_TSparser::checkIncludeLines($this->config[$k]);
|
||
$md5 = md5($this->config[$k]);
|
||
$this->rowSum[] = Array($k, 'config', $md5);
|
||
}
|
||
reset($this->editorcfg);
|
||
while(list($k)=each($this->editorcfg)) {
|
||
$this->editorcfg[$k]=t3lib_TSparser::checkIncludeLines($this->editorcfg[$k]);
|
||
$md5 = md5($this->editorconfig[$k]);
|
||
$this->rowSum[] = Array($k, 'editorconfig', $md5);
|
||
}
|
||
}
|
||