projects
/
matthijs
/
upstream
/
blosxom.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cfbcda
)
correct fix of bug 1345548.
author
Kevin Scaldeferri
<kscaldef@users.sourceforge.net>
Fri, 25 Nov 2005 20:00:32 +0000
(20:00 +0000)
committer
Kevin Scaldeferri
<kscaldef@users.sourceforge.net>
Fri, 25 Nov 2005 20:00:32 +0000
(20:00 +0000)
blosxom.cgi
patch
|
blob
|
history
diff --git
a/blosxom.cgi
b/blosxom.cgi
index 39ae927b36fc9e89f3c070998d28324d13a6219e..aeccd187eaec2610c0f3e9418dcf54c5ccd0368e 100755
(executable)
--- a/
blosxom.cgi
+++ b/
blosxom.cgi
@@
-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 = ('<'=>'<', '>'=>'>', '&'=>'&', '"'=>'"');
my $escape_re = join '|' => keys %escape;