Merge pull request #3118 from Icinga/fix/strip-doc-img-trailing-ws-3117
DocSectionRenderer: trim trailing image url space
This commit is contained in:
commit
29364be810
|
@ -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
|
||||
),
|
||||
|
|
Loading…
Reference in New Issue