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
1 changed files with 1 additions and 1 deletions

View File

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