Fixed a search results display error with synopsis.

This commit is contained in:
JT Smith 2009-05-08 14:22:49 +00:00
parent 37271f7ca7
commit 0ba93ae518
2 changed files with 2 additions and 1 deletions

View file

@ -9,6 +9,7 @@
- fixed: Crud serialization.
- fixed: URLs that shouldn't happen (#10353)
- Added more information output to EMS record importer.
- Fixed a search results display error with synopsis.
- fixed: i18n typo in Survey exit URL hover help.
- fixed: Survey jump target and jump expression precedence order across Section, Question, Answer.
- rfre #9998: Mark inbox messages read/unread

View file

@ -218,7 +218,7 @@ sub view {
#Add highlighting
$properties->{'title' } = $hl->highlight($properties->{title} || '');
$properties->{'title_nohighlight' } = $properties->{title};
my $synopsis = $properties->{'synopsis'} || '';
my $synopsis = $data->{'synopsis'} || '';
WebGUI::Macro::process($self->session, \$synopsis);
$properties->{'synopsis' } = $hl->highlight($synopsis);
$properties->{'synopsis_nohighlight'} = $synopsis;