Project

General

Profile

Actions

Bug #92051

closed

f:asset.script breaks ampersands and thus functionality

Added by Raphael Zschorsch over 3 years ago. Updated 10 months ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2020-08-19
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
10
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Adding this code:

<f:asset.script identifier="googleApi" src="https://maps.googleapis.com/maps/api/js?key=API_KEY&libraries=places" />

results in a frontend output:

<script src="https://maps.googleapis.com/maps/api/js?key=API_KEY&amp;amp;libraries=places"></script>

The original ampersand is already converted when added to the AssetCollector, which is correct, I suppose but then again htmlspecialchar'd in AssetRenderer.php in line 105 through the implodeAttributes function which results in the double manipulation of the ampersand:

$attributesString = count($attributes) ? ' ' . GeneralUtility::implodeAttributes($attributes, true) : '';

If I set the second parameter to false, it works.


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Feature #90522: Introduce AssetCollectorClosedFrank Nägler2020-02-24

Actions
Related to TYPO3 Core - Bug #92284: <f:asset.script> ViewHelper double escape the src attributeClosedFrank Nägler2020-09-10

Actions
Actions

Also available in: Atom PDF