From 58f61803e528b786b2c91f342da8aabe0454e741 Mon Sep 17 00:00:00 2001 From: Alex Schroeder Date: Wed, 6 Jul 2011 16:04:16 +0000 Subject: [PATCH] Fix atom self link. --- wiki.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wiki.pl b/wiki.pl index f61ff522..1c456101 100755 --- a/wiki.pl +++ b/wiki.pl @@ -1,5 +1,5 @@ #! /usr/bin/perl -# Version $Id: wiki.pl,v 1.946 2011/07/06 15:48:28 as Exp $ +# Version $Id: wiki.pl,v 1.947 2011/07/06 16:04:16 as Exp $ # Copyleft 2008 Brian Curry # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Alex Schroeder @@ -36,7 +36,7 @@ use CGI::Carp qw(fatalsToBrowser); use vars qw($VERSION); local $| = 1; # Do not buffer output (localized for mod_perl) -$VERSION=(split(/ +/, q{$Revision: 1.946 $}))[1]; # for MakeMaker +$VERSION=(split(/ +/, q{$Revision: 1.947 $}))[1]; # for MakeMaker # Options: use vars qw($RssLicense $RssCacheHours @RcDays $TempDir $LockDir $DataDir @@ -290,7 +290,7 @@ sub InitRequest { sub InitVariables { # Init global session variables for mod_perl! $WikiDescription = $q->p($q->a({-href=>'http://www.oddmuse.org/'}, 'Oddmuse'), $Counter++ > 0 ? Ts('%s calls', $Counter) : '') - . $q->p(q{$Id: wiki.pl,v 1.946 2011/07/06 15:48:28 as Exp $}); + . $q->p(q{$Id: wiki.pl,v 1.947 2011/07/06 16:04:16 as Exp $}); $WikiDescription .= $ModulesDescription if $ModulesDescription; $PrintedHeader = 0; # Error messages don't print headers unless necessary $ReplaceForm = 0; # Only admins may search and replace @@ -1889,7 +1889,7 @@ sub GetRcRss { . GetParam('title', QuoteHtml(NormalToFree($HomePage))); $rss .= "$title\n"; $rss .= "$ScriptName\n"; - $rss .= qq{self_url() . qq{" rel="self" type="application/rss+xml" />\n}; $rss .= "" . QuoteHtml($SiteDescription) . "\n" if $SiteDescription;