Actions
Bug #32368
closedlink validation of imageLinkWrap failed
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Content Rendering
Target version:
-
Start date:
2011-12-07
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Hello TYPO3-Team,
when you enable image_zoom a link will be generate in this form:
http://myPage/index.php?eID=tx_cms_showpic&file=uploads%2Fpics%2Ffinnland.jpg&md5=hashValue¶meters0=hashValue¶meters1=hashValue¶meters2=hashValue¶meters3=hashValue
The brakets [ and ] are not valid for w3c.
I found following code in class.tslib_content.php:
$params = '&md5=' . $md5_value; foreach (str_split($parametersEncoded, 64) as $index => $chunk) { $params .= '¶meters[' . $index . ']=' . rawurlencode($chunk); }
As you can see the brakets are hardcoded.
Hint: The & converts correctly in FE (& amp ;)
TS-Solution: This is a solution as long as this bug is not fixed:
tt_content.image.20.1.stdWrap.split { token = [ cObjNum = 1 || 2 1.current = 1 2.current = 1 2.wrap = %5B| } tt_content.image.20.1.stdWrap.stdWrap.split { token = ] cObjNum = 1 || 2 1.current = 1 2.current = 1 2.wrap = %5D| }
Actions