+2010-11-03 Stanislas Rolland <typo3@sjbr.ca>
+
+ * Fixed bug #16175: htmlArea RTE: The path of classesAnchor images are modified when saving
+
2010-11-02 Oliver Hader <oliver@typo3.org>
* Follow-up to feature #14994: Fixed call to log deprecated function
+2010-11-03 Stanislas Rolland <typo3@sjbr.ca>
+
+ * Fixed bug #16175: htmlArea RTE: The path of classesAnchor images are modified when saving
+
2010-11-02 Stanislas Rolland <typo3@sjbr.ca>
* Follow-up to feature #16079: htmlArea RTE: Register RTE scripts with the autoloader
$JSClassesAnchorArray .= (($index++)?',':'') . 'type : "' . $conf['type'] . '"' . $linebreak;
}
if (trim(str_replace('\'', '', str_replace('"', '', $conf['image'])))) {
- $JSClassesAnchorArray .= (($index++)?',':'') . 'image : "' . $this->htmlAreaRTE->getFullFileName(trim(str_replace('\'', '', str_replace('"', '', $conf['image'])))) . '"' . $linebreak;
+ $JSClassesAnchorArray .= (($index++)?',':'') . 'image : "' . $this->htmlAreaRTE->siteURL . t3lib_div::resolveBackPath(TYPO3_mainDir . $this->htmlAreaRTE->getFullFileName(trim(str_replace('\'', '', str_replace('"', '', $conf['image']))))) . '"' . $linebreak;
}
$JSClassesAnchorArray .= (($index++)?',':'') . 'addIconAfterLink : ' . ($conf['addIconAfterLink']?'true':'false') . $linebreak;
if (trim($conf['altText'])) {