aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index d66da41e..afe2d039 100644
--- a/index.php
+++ b/index.php
@@ -904,9 +904,9 @@ function showRSS()
904 $absurl = htmlspecialchars($link['url']); 904 $absurl = htmlspecialchars($link['url']);
905 if (startsWith($absurl,'?')) $absurl=$pageaddr.$absurl; // make permalink URL absolute 905 if (startsWith($absurl,'?')) $absurl=$pageaddr.$absurl; // make permalink URL absolute
906 if ($usepermalinks===true) 906 if ($usepermalinks===true)
907 echo '<item><title>'.htmlspecialchars($link['title']).'</title><guid>'.$guid.'</guid><link>'.$guid.'</link>'; 907 echo '<item><title>'.htmlspecialchars($link['title']).'</title><guid isPermaLink="false">'.$guid.'</guid><link>'.$guid.'</link>';
908 else 908 else
909 echo '<item><title>'.htmlspecialchars($link['title']).'</title><guid>'.$guid.'</guid><link>'.$absurl.'</link>'; 909 echo '<item><title>'.htmlspecialchars($link['title']).'</title><guid isPermaLink="false">'.$guid.'</guid><link>'.$absurl.'</link>';
910 if (!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()) echo '<pubDate>'.htmlspecialchars($rfc822date)."</pubDate>\n"; 910 if (!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()) echo '<pubDate>'.htmlspecialchars($rfc822date)."</pubDate>\n";
911 if ($link['tags']!='') // Adding tags to each RSS entry (as mentioned in RSS specification) 911 if ($link['tags']!='') // Adding tags to each RSS entry (as mentioned in RSS specification)
912 { 912 {