Skip to content

Commit 0271a1d

Browse files
committed
[spalenque] - #14012 * decode html entities in speaker title
1 parent 2ccf799 commit 0271a1d

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

summit/code/infrastructure/active_records/events/presentations/PresentationSpeaker.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,11 @@ public function getTitleNice()
209209
return (trim($title) != '') ? $title : $this->Title;
210210
}
211211

212+
public function getTitle()
213+
{
214+
return html_entity_decode($this->getField('Title'));
215+
}
216+
212217
/**
213218
* Helper method to link to this speaker, given an action
214219
*

0 commit comments

Comments
 (0)