* Fixed bug #15430: htmlArea RTE: Text not editable after pasting with server-based cleaning
* Follow-up to bug #15430: htmlArea RTE: Text not editable after pasting with server-based cleaning
* Fixed bug #15797: htmlArea RTE: Problem in Firefox inserting non-breaking space with Insert Special Character dialogue
+ * Fixed bug #15749: htmlArea RTE: Firefox shows & in external links with query string
2010-09-25 Steffen Gebert <steffen@steffen-gebert.de>
* Fixed bug #15430: htmlArea RTE: Text not editable after pasting with server-based cleaning
* Follow-up to bug #15430: htmlArea RTE: Text not editable after pasting with server-based cleaning
* Fixed bug #15797: htmlArea RTE: Problem in Firefox inserting non-breaking space with Insert Special Character dialogue
+ * Fixed bug #15749: htmlArea RTE: Firefox shows & in external links with query string
2010-09-12 Stanislas Rolland <typo3@sjbr.ca>
// CurrentUrl - the current link url must be passed around if it exists
$this->curUrlArray = t3lib_div::_GP('curUrl');
if ($this->curUrlArray['all']) {
- $this->curUrlArray=t3lib_div::get_tag_attributes($this->curUrlArray['all']);
+ $this->curUrlArray = t3lib_div::get_tag_attributes($this->curUrlArray['all']);
+ $this->curUrlArray['href'] = htmlspecialchars_decode($this->curUrlArray['href']);
}
// Note: parseCurUrl will invoke the hooks
$this->curUrlInfo = $this->parseCurUrl($this->curUrlArray['href'],$this->siteURL);