Bug #32368
closedlink validation of imageLinkWrap failed
0%
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| }
Updated by Stefan Froemken almost 13 years ago
I just see that the link is not correct in my description. Hope this is better:
myPage?eID=tx_cms_showpic&file=uploads%2Fpics%2Ffinnland.jpg&md5=hashValue¶meters [0]=hashValue¶meters [1]=hashValue¶meters [2]=hashValue¶meters [3]=hashValue
Stefan
Updated by Mathias Schreiber almost 10 years ago
- Status changed from New to Closed
- Is Regression set to No
fixed