Bug #39284
closedlink wizard url encoding bug on update
0%
Description
If i edit the target of an existing link inside the link wizard and click on update, the link becomes encoded, which is wrong. See attached screenshot.
I've fixed this bug by changing one line of code in typo3/class.browse_links.php
From
var cur_href="' . ($this->curUrlArray['href'] ? rawurlencode($this->curUrlArray['href']) : '') . '";
To
var cur_href=unescape("' . ($this->curUrlArray['href'] ? rawurlencode($this->curUrlArray['href']) : '') . '");
I can confirm this bug for 4.6.3 and 4.7.2
Files
Updated by Jari no-lastname-given over 12 years ago
- File typo3_linkwizard_bug.jpg typo3_linkwizard_bug.jpg added
Updated by Andreas Kießling over 12 years ago
The same happens when selection folders with special characters in its path.
But wrapping it with unescape does not seem to fix this.
Updated by Ivan Ruiz Gallego over 11 years ago
I can confirm this bug for 6.0 and 6.1. The patch above proposed bei Jari works also for 6.0 and 6.1. The file to be modified ist typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php, line 360.
Updated by Richard no-lastname-given over 11 years ago
I can also confirm this for TYPO3 4.5.29
Updated by Tymoteusz Motylewski almost 10 years ago
- Status changed from New to Resolved
- Is Regression set to No
seems to be already solved, see https://forge.typo3.org/issues/41413