Actions
Bug #18144
closedsetup.override.edit_wideDocument=1 ignored
Start date:
2008-02-06
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Even setup.override.edit_wideDocument=1 is set in the BE user TSConfig,
it has no effect on table's width in the TCEforms.
Also reproducible on TYPO3 v4.1.2
A solution would be to change the function initDefaultBEmode() in class.t3lib_tceforms.php. The call $this->setNewBEDesign(); shoulb be moved after the classwide definition $this->docLarge.
function initDefaultBEmode() {
global $BE_USER;
$this->prependFormFieldNames = 'data';
$this->formName = 'editform';
- $this->setNewBEDesign();
$this->docLarge = $BE_USER->uc['edit_wideDocument'] ? 1 : 0;
+ $this->setNewBEDesign();
$this->edit_showFieldHelp = $BE_USER->uc['edit_showFieldHelp'];
$this->edit_docModuleUpload = $BE_USER->uc['edit_docModuleUpload'];
$this->titleLen = $BE_USER->uc['titleLen']; // @deprecated
$this->inline->init($this);
}
Many thanks to Michael Stucki for giving hints to my last report.
Greetings
(issue imported from #M7422)
Updated by Benni Mack over 16 years ago
This feature is not used in 4.2+ anymore, as we use the full width now. Can I close this bug then?
Updated by Christian Kuhn almost 16 years ago
Resolved as duplicate of #19650 which is currently pending in core list. Please test.
Actions