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

@ -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;