Actions
Bug #18339
closedEM - Translation Manager loose CSS while updating
Start date:
2008-02-29
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
when you select a language and then press update whole page is loosing css.
I think this is because of the docheader and templating, seems that the Ajax doesn't care this.
See attached screenshot
(issue imported from #M7713)
Files
Updated by Steffen Kamper over 16 years ago
The reason is the kind of outputting in Translation Manager, it's done by this:
// Override content output - we now do that ourself:
echo ($this->content . $this->doc->section('Translation status',$content,0,1));
$this->doPrintContent = FALSE;
flush();
sure that there is all missing what docheader is.
I created a patch where the doc is rendered in same manner while check or update, patch is attached.
Actions