mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 11:59:56 +00:00
remove html escaping of data values
This commit is contained in:
parent
0ad49267af
commit
d28749eac7
|
@ -17,8 +17,8 @@ class NodeImage extends Node {
|
|||
|
||||
return [
|
||||
'url' => $this->resolveImageUrl( $title ),
|
||||
'name' => ( $title ) ?htmlspecialchars( $title->getText() ) : '',
|
||||
'key' => ( $title ) ? htmlspecialchars( urlencode( $title->getDBKey() ) ) : '',
|
||||
'name' => ( $title ) ? $title->getText() : '',
|
||||
'key' => ( $title ) ? $title->getDBKey() : '',
|
||||
'alt' => $alt,
|
||||
'caption' => $caption,
|
||||
'ref' => $ref
|
||||
|
|
Loading…
Reference in a new issue