DocSectionRenderer: trim trailing image url space

fixes #3117
This commit is contained in:
Thomas Gelf 2017-11-21 12:36:13 +01:00
parent 745674dbe4
commit e32023bd71

View File

@ -194,7 +194,7 @@ class DocSectionRenderer extends DocRenderer
$path = $this->getView()->getHelper('Url')->url( $path = $this->getView()->getHelper('Url')->url(
array_merge( array_merge(
array( array(
'image' => $img->getAttribute('src') 'image' => trim($img->getAttribute('src'))
), ),
$this->urlParams $this->urlParams
), ),