]> git.deb.at Git - pkg/blosxom.git/commitdiff
correct fix of bug 1345548.
authorKevin Scaldeferri <kscaldef@users.sourceforge.net>
Fri, 25 Nov 2005 20:00:32 +0000 (20:00 +0000)
committerKevin Scaldeferri <kscaldef@users.sourceforge.net>
Fri, 25 Nov 2005 20:00:32 +0000 (20:00 +0000)
blosxom.cgi

index 39ae927b36fc9e89f3c070998d28324d13a6219e..aeccd187eaec2610c0f3e9418dcf54c5ccd0368e 100755 (executable)
@@ -375,7 +375,7 @@ sub generate {
       # Plugins: Story
       foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('story') and $entries = $plugin->story($path, $fn, \$story, \$title, \$body) }
       
-      if ($content_type =~ m{\bxml\b$}) {
+      if ($content_type =~ m{\bxml\b}) {
         # Escape <, >, and &, and to produce valid RSS
         my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  
         my $escape_re  = join '|' => keys %escape;