<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[14950] trunk/wp-includes: Some more url escaping in feeds.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14950">14950</a></dd>
<dt>Author</dt> <dd>westi</dd>
<dt>Date</dt> <dd>2010-05-26 17:47:29 +0000 (Wed, 26 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Some more url escaping in feeds. See <a href="http://trac.wordpress.org/ticket/13555">#13555</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpincludesfeedatomcommentsphp">trunk/wp-includes/feed-atom-comments.php</a></li>
<li><a href="#trunkwpincludesfeedrss2php">trunk/wp-includes/feed-rss2.php</a></li>
<li><a href="#trunkwpincludesfeedphp">trunk/wp-includes/feed.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludesfeedatomcommentsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/feed-atom-comments.php (14949 => 14950)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/feed-atom-comments.php        2010-05-26 17:27:18 UTC (rev 14949)
+++ trunk/wp-includes/feed-atom-comments.php        2010-05-26 17:47:29 UTC (rev 14950)
</span><span class="lines">@@ -27,7 +27,7 @@
</span><span class="cx">         &lt;updated&gt;&lt;?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastcommentmodified('GMT'), false); ?&gt;&lt;/updated&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php if ( is_singular() ) { ?&gt;
</span><del>-        &lt;link rel=&quot;alternate&quot; type=&quot;&lt;?php bloginfo_rss('html_type'); ?&gt;&quot; href=&quot;&lt;?php echo get_comments_link(); ?&gt;&quot; /&gt;
</del><ins>+        &lt;link rel=&quot;alternate&quot; type=&quot;&lt;?php bloginfo_rss('html_type'); ?&gt;&quot; href=&quot;&lt;?php comments_link_feed(); ?&gt;&quot; /&gt;
</ins><span class="cx">         &lt;link rel=&quot;self&quot; type=&quot;application/atom+xml&quot; href=&quot;&lt;?php echo get_post_comments_feed_link('', 'atom'); ?&gt;&quot; /&gt;
</span><span class="cx">         &lt;id&gt;&lt;?php echo get_post_comments_feed_link('', 'atom'); ?&gt;&lt;/id&gt;
</span><span class="cx"> &lt;?php } elseif(is_search()) { ?&gt;
</span></span></pre></div>
<a id="trunkwpincludesfeedrss2php"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/feed-rss2.php (14949 => 14950)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/feed-rss2.php        2010-05-26 17:27:18 UTC (rev 14949)
+++ trunk/wp-includes/feed-rss2.php        2010-05-26 17:47:29 UTC (rev 14950)
</span><span class="lines">@@ -34,7 +34,7 @@
</span><span class="cx">         &lt;item&gt;
</span><span class="cx">                 &lt;title&gt;&lt;?php the_title_rss() ?&gt;&lt;/title&gt;
</span><span class="cx">                 &lt;link&gt;&lt;?php the_permalink_rss() ?&gt;&lt;/link&gt;
</span><del>-                &lt;comments&gt;&lt;?php comments_link(); ?&gt;&lt;/comments&gt;
</del><ins>+                &lt;comments&gt;&lt;?php comments_link_feed(); ?&gt;&lt;/comments&gt;
</ins><span class="cx">                 &lt;pubDate&gt;&lt;?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?&gt;&lt;/pubDate&gt;
</span><span class="cx">                 &lt;dc:creator&gt;&lt;?php the_author() ?&gt;&lt;/dc:creator&gt;
</span><span class="cx">                 &lt;?php the_category_rss() ?&gt;
</span><span class="lines">@@ -50,7 +50,7 @@
</span><span class="cx">                 &lt;content:encoded&gt;&lt;![CDATA[&lt;?php the_excerpt_rss() ?&gt;]]&gt;&lt;/content:encoded&gt;
</span><span class="cx">         &lt;?php endif; ?&gt;
</span><span class="cx"> &lt;?php endif; ?&gt;
</span><del>-                &lt;wfw:commentRss&gt;&lt;?php echo get_post_comments_feed_link(null, 'rss2'); ?&gt;&lt;/wfw:commentRss&gt;
</del><ins>+                &lt;wfw:commentRss&gt;&lt;?php echo esc_url( get_post_comments_feed_link(null, 'rss2') ); ?&gt;&lt;/wfw:commentRss&gt;
</ins><span class="cx">                 &lt;slash:comments&gt;&lt;?php echo get_comments_number(); ?&gt;&lt;/slash:comments&gt;
</span><span class="cx"> &lt;?php rss_enclosure(); ?&gt;
</span><span class="cx">         &lt;?php do_action('rss2_item'); ?&gt;
</span></span></pre></div>
<a id="trunkwpincludesfeedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/feed.php (14949 => 14950)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/feed.php        2010-05-26 17:27:18 UTC (rev 14949)
+++ trunk/wp-includes/feed.php        2010-05-26 17:47:29 UTC (rev 14950)
</span><span class="lines">@@ -186,10 +186,20 @@
</span><span class="cx">  * @uses apply_filters() Call 'the_permalink_rss' on the post permalink
</span><span class="cx">  */
</span><span class="cx"> function the_permalink_rss() {
</span><del>-        echo apply_filters('the_permalink_rss', get_permalink());
</del><ins>+        echo esc_url( apply_filters('the_permalink_rss', get_permalink() ));
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><ins>+ * Outputs the link to the comments for the current post in an xml safe way
+ * 
+ * @since 3.0.0
+ * @return none
+ */
+function comments_link_feed() {
+        echo esc_url( get_comments_link() );
+}
+
+/**
</ins><span class="cx">  * Display the feed GUID for the current comment.
</span><span class="cx">  *
</span><span class="cx">  * @package WordPress
</span></span></pre>
</div>
</div>

</body>
</html>