X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/blobdiff_plain/3a58565b522ed5769512233a6842e97c45c087fd..0e3c49f40551b4e97f468bb97484a5ccf34fb114:/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php?ds=sidebyside diff --git a/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php b/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php index 79c11d7faa49..66942e03a45d 100644 --- a/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php +++ b/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php @@ -198,7 +198,7 @@ class SoftReferenceIndex { if ($k % 2) { // Get file reference: $attribs = $htmlParser->get_tag_attributes($v); - $srcRef = GeneralUtility::htmlspecialchars_decode($attribs[0]['src']); + $srcRef = htmlspecialchars_decode($attribs[0]['src']); $pI = pathinfo($srcRef); // If it looks like a local image, continue. Otherwise ignore it. $absPath = GeneralUtility::getFileAbsFileName(PATH_site . $srcRef); @@ -342,7 +342,7 @@ class SoftReferenceIndex { } // Get file reference: if (isset($attribs[0][$attributeName])) { - $srcRef = GeneralUtility::htmlspecialchars_decode($attribs[0][$attributeName]); + $srcRef = htmlspecialchars_decode($attribs[0][$attributeName]); // Set entry: $tokenID = $this->makeTokenID($k); $elements[$k] = array();