Bug #87124
closedMultiple modal dialogs show HTML
100%
Description
Updating extensions is not possible anymore as the content of the modal shows the HTML.
Affected versions: 8.7.21, 9.5.2
Files
Updated by Markus Klein almost 6 years ago
- File update dialog.jpg update dialog.jpg added
Updated by Markus Klein almost 6 years ago
- File add media.jpg add media.jpg added
- Subject changed from Extension Update dialog broken to Multiple modal dialogs show HTML
Updated by Markus Klein almost 6 years ago
All usages of Modals in v7, v8 and v9 need to be checked, whether HTML code display is necessary and is passed as string
to the modal method.
Broken calls are:
Modal.show(title, '<div>broken html</div>', ...); Modal.confirm(title, '<div>broken html</div>', ...); Modal.advanced({content: '<div>broken html</div>', ... });
Those need to be refactored to use jQuery objects like
let $content = $('<div>').text('working stuff'); Modal.show(title, $content, ...);
Updated by Josef Glatz almost 6 years ago
Updated by Markus Klein almost 6 years ago
List of affected code places
v9:
- typo3/sysext/backend/Resources/Private/TypeScript/OnlineMedia.ts:93
- typo3/sysext/backend/Resources/Public/JavaScript/PageTree/PageTreeDragDrop.js:267+302+567+152
- typo3/sysext/extensionmanager/Resources/Public/JavaScript/Main.js:260+389+429
v8:
- typo3/sysext/backend/Resources/Public/JavaScript/OnlineMedia.js:89
- typo3/sysext/extensionmanager/Resources/Public/JavaScript/Main.js:260+462+502
Updated by Pixelant Developer almost 6 years ago
- Related to Bug #87144: "Add media by URL" shows encoded html added
Updated by Rene Tobias almost 6 years ago
Markus Klein wrote:
Updating extensions is not possible anymore as the content of the modal shows the HTML.
Affected versions: 8.7.21, 9.5.2
Hey, is this also affecting FE? In some site we have empty <p> tags, for empty spaces, but in 8.7.21 there are no empty spaces...if i revert back to 8.7.19 is ok
Updated by Wittkiel Gruppe almost 6 years ago
Rene Tobias Tobias wrote:
Hey, is this also affecting FE? In some site we have empty <p> tags, for empty spaces, but in 8.7.21 there are no empty spaces...if i revert back to 8.7.19 is ok
This should be issue #86819
Updated by Riccardo De Contardi almost 6 years ago
- Status changed from Accepted to Closed
- Assignee deleted (
Markus Klein) - Target version deleted (
next-patchlevel)
All subtasks are closed, therefore I close this one for now.
Let me know if this is the wrong decision and I'll reopen it. Thank you.