Bug #83090
closedSave and close on file editing (from filelist) doesn't close
100%
Description
If you edit a text file from within FileList, and use "save and close" you will not be redirected back to list.
The issue doesn't exist in v8.7
in v8 the hidden fields looked like:
<input type="hidden" name="file[editfile]0[target]" value="57">
<input type="hidden" name="redirect" value="/typo3/index.php?route=%2Ffile%2Feditcontent&.....">
While in v9 we have:
<input type="hidden" name="data[editfile]0[target]" value="57">
<input type="hidden" name="data[editfile]0[redirect]" value="/typo3/index.php?route=%2Ffile%2Feditcontent&...">
^^note the difference in redirect field name
There are 2 possible solutions:
1) change the form generation code to make redirect field have name "redirect"
2) change save&close button js code from
'document.editform.redirect.value='...
to
'document.editform.elements.namedItem("data[editfile]0[redirect]").value='...
Updated by Gerrit Code Review almost 7 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/54757
Updated by Tymoteusz Motylewski almost 7 years ago
- Related to Bug #81763: Migrate file edit form to FormEngine added
Updated by Gerrit Code Review almost 7 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/54757
Updated by Gerrit Code Review almost 7 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/54757
Updated by Tymoteusz Motylewski almost 7 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 5771457d5f093a47f41827ac89c7c5832d3e33c8.