From c8dd0b12cffbebbe12d445efea4676bd8a19f2d1 Mon Sep 17 00:00:00 2001 From: Alex Schroeder Date: Sun, 5 Dec 2004 03:52:21 +0000 Subject: [PATCH] (HeadlinesRule): AddHtmlEnvironment('p') --- modules/headlines.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/headlines.pl b/modules/headlines.pl index e7e5359b..d33c8631 100644 --- a/modules/headlines.pl +++ b/modules/headlines.pl @@ -18,7 +18,7 @@ use vars qw($HeadlineNumber); -$ModulesDescription .= '

$Id: headlines.pl,v 1.6 2004/10/12 22:26:40 as Exp $

'; +$ModulesDescription .= '

$Id: headlines.pl,v 1.7 2004/12/05 03:52:21 as Exp $

'; push(@MyRules, \&HeadlinesRule); @@ -31,7 +31,7 @@ sub HeadlinesRule { Clean(CloseHtmlEnvironments()); Dirty($1); HeadlinesPrint(); - return ''; + return AddHtmlEnvironment('p'); } return undef; }