diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 195eb12ad..bb430c31a 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -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 diff --git a/lib/WebGUI/Asset/Wobject/Search.pm b/lib/WebGUI/Asset/Wobject/Search.pm index 31c384271..61c8ca747 100644 --- a/lib/WebGUI/Asset/Wobject/Search.pm +++ b/lib/WebGUI/Asset/Wobject/Search.pm @@ -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;