Actions
Bug #21012
closedt3lib_TCEforms_inline::renderForeignRecordHeaderControl() -> wrong backpath of a skin image
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2009-09-08
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
If the record is edit-locked by another user, it "shows" a image without backpath.
Solution:
Change the first parameter from empty String ('') to $this->backPath.
Method: t3lib_TCEforms_inline::renderForeignRecordHeaderControl()
Line 684
CODE <<<
t3lib_iconWorks::skinImg('','gfx/recordlock_warning3.gif','width="17" height="12"')
CODE;
--- change to ---
DEBUGGED_CODE <<<
t3lib_iconWorks::skinImg($this->backPath,'gfx/recordlock_warning3.gif','width="17" height="12"')
DEBUGGED_CODE;
(issue imported from #M11898)
Actions