<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>bbPress Support Forums &#187; User Favorites: kirpiit</title>
		<link>http://bbpress.org/forums/profile/</link>
		<description>bbPress Support Forums &#187; User Favorites: kirpiit</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 04:17:14 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Lazza on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-78104</link>
			<pubDate>Sun, 05 Dec 2010 12:09:00 +0000</pubDate>
			<dc:creator>Lazza</dc:creator>
			<guid isPermaLink="false">78104@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I think I've created a quite strong code for the RSS. It allows plugins to apply their filters (example: smilies!!!). It fixes problems with double apersand encoding and "&#160;" not working well with UTF-8. It also fixes the date of items which is not valid if you use localization, even if the options array sets "false" on "localize".<br />
Feel free to try the code for yourself, it works with stock bbPress 1.0.2. You JUST need to put this content in your rss2.php (check the theme folder).<br />
<pre><code>&#60;?php
header( &#039;Content-Type: text/xml; charset=UTF-8&#039; );
echo &#039;&#60;&#039; . &#039;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#039; . &#039;&#62;&#039; . &#34;\n&#34;;
bb_generator( &#039;comment&#039; );

function datefix($buffer) {
	/*
	 * fix della data in modo da tenerla in inglese, rispettando
	 * le specifiche dei feed RSS
	 */
	 return gmdate(&#039;D, d M Y H:i:s +0000&#039;, $buffer);
}

function callback($buffer)
{
	/*
	 * sistema il codice rimuovendo la doppia codifica di &#34;&#38;&#34; e
	 * rimuove il carattere &#34;&#38;nbsp;&#34; che crea problemi con UTF-8
	 * in questo modo ho il testo del post dopo che i plugin (tipo
	 * le faccine) hanno applicato le loro modifiche html e ritorno
	 * il codice html senza entities ma in forma pura
	 */

	$single = str_replace(&#34;&#38;&#34;, &#34;&#38;&#34;, $buffer);
	$spaced = str_replace(&#34;&#38;nbsp;&#34;, &#34; &#34;, $single);
	return html_entity_decode($spaced);
}

?&#62;
&#60;rss version=&#34;2.0&#34;
	xmlns:content=&#34;http://purl.org/rss/1.0/modules/content/&#34;
	xmlns:dc=&#34;http://purl.org/dc/elements/1.1/&#34;
	xmlns:atom=&#34;http://www.w3.org/2005/Atom&#34;&#62;
	&#60;channel&#62;
		&#60;title&#62;&#60;?php echo $title; ?&#62;&#60;/title&#62;
		&#60;link&#62;&#60;?php echo $link; ?&#62;&#60;/link&#62;
		&#60;description&#62;&#60;![CDATA[&#60;?php echo $description; ?&#62;]]&#62;&#60;/description&#62;
		&#60;language&#62;&#60;?php esc_html( bb_option(&#039;language&#039;) ); ?&#62;&#60;/language&#62;
		&#60;pubDate&#62;&#60;?php echo gmdate(&#039;D, d M Y H:i:s +0000&#039;); ?&#62;&#60;/pubDate&#62;
		&#60;?php bb_generator( &#039;rss2&#039; ); ?&#62;
		&#60;textInput&#62;
			&#60;title&#62;&#60;![CDATA[&#60;?php _e(&#039;Search&#039;); ?&#62;]]&#62;&#60;/title&#62;
			&#60;description&#62;&#60;![CDATA[&#60;?php _e(&#039;Search all topics from these forums.&#039;); ?&#62;]]&#62;&#60;/description&#62;
			&#60;name&#62;q&#60;/name&#62;
			&#60;link&#62;&#60;?php bb_uri(&#039;search.php&#039;); ?&#62;&#60;/link&#62;
		&#60;/textInput&#62;
		&#60;atom:link href=&#34;&#60;?php echo $link_self; ?&#62;&#34; rel=&#34;self&#34; type=&#34;application/rss+xml&#34; /&#62;

&#60;?php foreach ($posts as $bb_post) : ?&#62;
		&#60;item&#62;
			&#60;title&#62;&#60;?php post_author(); ?&#62; &#60;?php _e(&#039;on&#039;)?&#62; &#34;&#60;?php topic_title( $bb_post-&#62;topic_id ); ?&#62;&#34;&#60;/title&#62;
			&#60;link&#62;&#60;?php post_link(); ?&#62;&#60;/link&#62;
			&#60;pubDate&#62;&#60;?php 

			ob_start(&#34;datefix&#34;);
			bb_post_time(&#039;U&#039;);
			ob_end_flush();

			?&#62;&#60;/pubDate&#62;
			&#60;dc:creator&#62;&#60;?php post_author(); ?&#62;&#60;/dc:creator&#62;
			&#60;guid isPermaLink=&#34;false&#34;&#62;&#60;?php post_id(); ?&#62;@&#60;?php bb_uri(); ?&#62;&#60;/guid&#62;
			&#60;description&#62;&#60;![CDATA[&#60;?php

			ob_start(&#34;callback&#34;);
			post_text();
			ob_end_flush();

			?&#62;]]&#62;&#60;/description&#62;
		&#60;/item&#62;
&#60;?php endforeach; ?&#62;

	&#60;/channel&#62;
&#60;/rss&#62;</code></pre>
<p>Sorry for comments in italian.<br />
BTW @ yoyopop, I don't remember in which topic, but I read on this forum that the problem is related to some plugins having extra spaces in their code before the opening "&#60;?php" tag. Check it...
</p>]]></description>
					</item>
		<item>
			<title>Rich Pedley on "Customizing Profile Fields"</title>
			<link>http://bbpress.org/forums/topic/customizing-profile-fields#post-68674</link>
			<pubDate>Sun, 16 May 2010 08:09:46 +0000</pubDate>
			<dc:creator>Rich Pedley</dc:creator>
			<guid isPermaLink="false">68674@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>not that i found, but if you do find a solution - let me know!
</p>]]></description>
					</item>
		<item>
			<title>Pagal on "Customizing Profile Fields"</title>
			<link>http://bbpress.org/forums/topic/customizing-profile-fields#post-68671</link>
			<pubDate>Sat, 15 May 2010 22:32:09 +0000</pubDate>
			<dc:creator>Pagal</dc:creator>
			<guid isPermaLink="false">68671@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@ Johnbillion ......  Is it possible with this plugin to allow the users to choose a filed from drop down menu,<br />
like aga, or Marital Status: same as this link<br />
<a href="http://boards.weddingbee.com/register.php" rel="nofollow">http://boards.weddingbee.com/register.php</a><br />
I hope you'll understand what I want ...</p>
<p>Thanks,<br />
Pagal
</p>]]></description>
					</item>
		<item>
			<title>yoyopop on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-68159</link>
			<pubDate>Tue, 04 May 2010 12:34:53 +0000</pubDate>
			<dc:creator>yoyopop</dc:creator>
			<guid isPermaLink="false">68159@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>CioboMario, this is the same problem I had. The files do not contain an extra space before the &#60;?xml but when output the error comes up. Try replacing your files with the latest versions - <a href="http://trac.bbpress.org/ticket/1181" rel="nofollow">http://trac.bbpress.org/ticket/1181</a>
</p>]]></description>
					</item>
		<item>
			<title>zaerl on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-68154</link>
			<pubDate>Tue, 04 May 2010 12:07:03 +0000</pubDate>
			<dc:creator>zaerl</dc:creator>
			<guid isPermaLink="false">68154@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>(In english please). I don't know. I don't have problems with feeds.
</p>]]></description>
					</item>
		<item>
			<title>CioboMario on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-68152</link>
			<pubDate>Tue, 04 May 2010 11:54:39 +0000</pubDate>
			<dc:creator>CioboMario</dc:creator>
			<guid isPermaLink="false">68152@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@zaerl</p>
<p>Ho provato a fare tutte le modifiche possibile, ma non ho trovato soluzione... come risolvo? Ho anche sostituito i file rss2.php, rss.php con quelli di default (anche se prima non li avevo toccati) ma nulla
</p>]]></description>
					</item>
		<item>
			<title>zaerl on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-68150</link>
			<pubDate>Tue, 04 May 2010 11:23:48 +0000</pubDate>
			<dc:creator>zaerl</dc:creator>
			<guid isPermaLink="false">68150@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>There's a space character before &#60;?xml
</p>]]></description>
					</item>
		<item>
			<title>CioboMario on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-68149</link>
			<pubDate>Tue, 04 May 2010 11:12:14 +0000</pubDate>
			<dc:creator>CioboMario</dc:creator>
			<guid isPermaLink="false">68149@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>WTF is the problem?</p>
<p>Errore interpretazione XML: la dichiarazione XML o testuale non è all'inizio di un'entità<br />
Indirizzo: <a href="http://ciobomario.com/forum/rss/forum/presentati" rel="nofollow">http://ciobomario.com/forum/rss/forum/presentati</a><br />
Linea numero 2, colonna 1:&#60;?xml version="1.0" encoding="UTF-8"?&#62;<br />
^
</p>]]></description>
					</item>
		<item>
			<title>yoyopop on "Added tags do not update the page"</title>
			<link>http://bbpress.org/forums/topic/added-tags-do-not-update#post-66791</link>
			<pubDate>Mon, 05 Apr 2010 13:15:47 +0000</pubDate>
			<dc:creator>yoyopop</dc:creator>
			<guid isPermaLink="false">66791@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>found it! there was a single space after the final <code>?&#62;</code> in the main quote.php file - damn!!
</p>]]></description>
					</item>
		<item>
			<title>yoyopop on "Added tags do not update the page"</title>
			<link>http://bbpress.org/forums/topic/added-tags-do-not-update#post-66788</link>
			<pubDate>Mon, 05 Apr 2010 11:08:21 +0000</pubDate>
			<dc:creator>yoyopop</dc:creator>
			<guid isPermaLink="false">66788@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>it seems to be a clash with the Ajaxed Quote plugin... not quite sure why yet though.
</p>]]></description>
					</item>
		<item>
			<title>yoyopop on "Added tags do not update the page"</title>
			<link>http://bbpress.org/forums/topic/added-tags-do-not-update#post-66749</link>
			<pubDate>Sun, 04 Apr 2010 21:50:05 +0000</pubDate>
			<dc:creator>yoyopop</dc:creator>
			<guid isPermaLink="false">66749@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm having this same issue in a test forum I'm running at the moment. Adding tags doesn't refresh the page, consistently in certain topics. And when it does, the whole page reloads, rather than just the tag section via ajax...</p>
<p>This problem happens when using the default theme.</p>
<p>Any ideas? kirpi.it didn't say how it was fixed!?
</p>]]></description>
					</item>
		<item>
			<title>Dailytalker on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-66256</link>
			<pubDate>Tue, 23 Mar 2010 19:38:48 +0000</pubDate>
			<dc:creator>Dailytalker</dc:creator>
			<guid isPermaLink="false">66256@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I solved the problem!  </p>
<p>I removed all "<code>&#187;</code>" in the rss.php </p>
<p>Replace the code of your rss.php with the following code and it should work:</p>
<pre><code>&#60;?php&#60;br /&#62;
require(&#39;./bb-load.php&#39;);&#60;/p&#62;
&#60;p&#62;// Determine the type of feed and the id of the object&#60;br /&#62;
if ( isset($_GET[&#39;view&#39;]) &#124;&#124; bb_get_path() == &#39;view&#39; ) {&#60;/p&#62;
&#60;p&#62;	// View&#60;br /&#62;
	$feed = &#39;view&#39;;&#60;br /&#62;
	$feed_id = isset($_GET[&#39;view&#39;]) ? $_GET[&#39;view&#39;] : bb_get_path(2);&#60;/p&#62;
&#60;p&#62;} elseif ( isset($_GET[&#39;topic&#39;]) &#124;&#124; bb_get_path() == &#39;topic&#39; ) {&#60;/p&#62;
&#60;p&#62;	// Topic&#60;br /&#62;
	$feed = &#39;topic&#39;;&#60;br /&#62;
	$topic = get_topic(isset($_GET[&#39;topic&#39;]) ? $_GET[&#39;topic&#39;] : bb_get_path(2));&#60;br /&#62;
	$feed_id = $topic-&#62;topic_id;&#60;/p&#62;
&#60;p&#62;} elseif ( isset($_GET[&#39;profile&#39;]) &#124;&#124; bb_get_path() == &#39;profile&#39; ) {&#60;/p&#62;
&#60;p&#62;	// Profile&#60;br /&#62;
	$feed = &#39;profile&#39;;&#60;br /&#62;
	$feed_id = isset($_GET[&#39;profile&#39;]) ? $_GET[&#39;profile&#39;] : bb_get_path(2);&#60;/p&#62;
&#60;p&#62;} elseif ( isset($_GET[&#39;tag&#39;]) &#124;&#124; bb_get_path() == &#39;tags&#39; ) {&#60;/p&#62;
&#60;p&#62;	if ( isset($_GET[&#39;topics&#39;]) &#124;&#124; bb_get_path(3) == &#39;topics&#39; ) {&#60;br /&#62;
		// Tag recent topics&#60;br /&#62;
		$feed = &#39;tag-topics&#39;;&#60;br /&#62;
	} else {&#60;br /&#62;
		// Tag recent posts&#60;br /&#62;
		$feed = &#39;tag-posts&#39;;&#60;br /&#62;
	}&#60;br /&#62;
	$feed_id = isset($_GET[&#39;tag&#39;]) ? $_GET[&#39;tag&#39;] : bb_get_path(2);&#60;/p&#62;
&#60;p&#62;} elseif ( isset($_GET[&#39;forum&#39;]) &#124;&#124; bb_get_path() == &#39;forum&#39; ) {&#60;/p&#62;
&#60;p&#62;	if ( isset($_GET[&#39;topics&#39;]) &#124;&#124; bb_get_path(3) == &#39;topics&#39; ) {&#60;br /&#62;
		// Forum recent topics&#60;br /&#62;
		$feed = &#39;forum-topics&#39;;&#60;br /&#62;
	} else {&#60;br /&#62;
		// Forum recent posts&#60;br /&#62;
		$feed = &#39;forum-posts&#39;;&#60;br /&#62;
	}&#60;br /&#62;
	$forum = bb_get_forum(isset($_GET[&#39;forum&#39;]) ? $_GET[&#39;forum&#39;] : bb_get_path(2));&#60;br /&#62;
	$feed_id = $forum-&#62;forum_id;&#60;/p&#62;
&#60;p&#62;} elseif ( isset($_GET[&#39;topics&#39;]) &#124;&#124; bb_get_path() == &#39;topics&#39; ) {&#60;/p&#62;
&#60;p&#62;	// Recent topics&#60;br /&#62;
	$feed = &#39;all-topics&#39;;&#60;/p&#62;
&#60;p&#62;} else {&#60;/p&#62;
&#60;p&#62;	// Recent posts&#60;br /&#62;
	$feed = &#39;all-posts&#39;;&#60;/p&#62;
&#60;p&#62;}&#60;/p&#62;
&#60;p&#62;// Initialise the override variable&#60;br /&#62;
$bb_db_override = false;&#60;br /&#62;
do_action( &#39;bb_rss.php_pre_db&#39; );&#60;/p&#62;
&#60;p&#62;if ( !$bb_db_override ) {&#60;/p&#62;
&#60;p&#62;	// Get the posts and the title for the given feed&#60;br /&#62;
	switch ($feed) {&#60;br /&#62;
		case &#39;view&#39;:&#60;br /&#62;
			if ( !isset($bb_views[$feed_id]) )&#60;br /&#62;
				die();&#60;br /&#62;
			if ( !$bb_views[$feed_id][&#39;feed&#39;] )&#60;br /&#62;
				die();&#60;br /&#62;
			if ( !$topics_object = new BB_Query( &#39;topic&#39;, $bb_views[$feed_id][&#39;query&#39;], &#34;bb_view_$feed_id&#34; ) )&#60;br /&#62;
				die();&#60;/p&#62;
&#60;p&#62;			$topics = $topics_object-&#62;results;&#60;br /&#62;
			if ( !$topics &#124;&#124; !is_array($topics) )&#60;br /&#62;
				die();&#60;/p&#62;
&#60;p&#62;			$posts = array();&#60;br /&#62;
			foreach ($topics as $topic) {&#60;br /&#62;
				$posts[] = bb_get_first_post($topic-&#62;topic_id);&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;			$title = esc_html( sprintf( __( &#39;%1$s View: %2$s&#39; ), bb_get_option( &#39;name&#39; ), $bb_views[$feed_id][&#39;title&#39;] ) );&#60;br /&#62;
			$link = get_view_link($feed_id);&#60;br /&#62;
			$link_self = bb_get_view_rss_link($feed_id);&#60;br /&#62;
			break;&#60;/p&#62;
&#60;p&#62;		case &#39;topic&#39;:&#60;br /&#62;
			if ( !$topic = get_topic ( $feed_id ) )&#60;br /&#62;
				die();&#60;br /&#62;
			if ( !$posts = get_thread( $feed_id, 0, 1 ) )&#60;br /&#62;
				die();&#60;br /&#62;
			$title = esc_html( sprintf( __( &#39;%1$s  Topic: %2$s&#39; ), bb_get_option( &#39;name&#39; ), get_topic_title() ) );&#60;br /&#62;
			$link = get_topic_link($feed_id);&#60;br /&#62;
			$link_self = get_topic_rss_link($feed_id);&#60;br /&#62;
			break;&#60;/p&#62;
&#60;p&#62;		case &#39;profile&#39;:&#60;br /&#62;
			if ( bb_get_option( &#39;mod_rewrite&#39; ) === &#39;slugs&#39; ) {&#60;br /&#62;
				$user = bb_get_user_by_nicename( $feed_id );&#60;br /&#62;
			} else {&#60;br /&#62;
				$user = bb_get_user( $feed_id );&#60;br /&#62;
			}&#60;br /&#62;
			if ( !$user ) {&#60;br /&#62;
				die();&#60;br /&#62;
			}&#60;br /&#62;
			if ( !$posts = get_user_favorites( $user-&#62;ID ) ) {&#60;br /&#62;
				die();&#60;br /&#62;
			}&#60;br /&#62;
			$title = esc_html( sprintf( __( &#39;%1$s  User Favorites: %2$s&#39; ), bb_get_option( &#39;name&#39; ), $user-&#62;user_login ) );&#60;br /&#62;
			$link = bb_get_profile_link($feed_id);&#60;br /&#62;
			$link_self = get_favorites_rss_link($feed_id);&#60;br /&#62;
			break;&#60;/p&#62;
&#60;p&#62;		case &#39;tag-topics&#39;:&#60;br /&#62;
			if ( !$tag = bb_get_tag( $feed_id ) )&#60;br /&#62;
				die();&#60;br /&#62;
			if ( !$topics = get_tagged_topics( array( &#39;tag_id&#39; =&#62; $tag-&#62;tag_id, &#39;page&#39; =&#62; 0 ) ) )&#60;br /&#62;
				die();&#60;/p&#62;
&#60;p&#62;			$posts = array();&#60;br /&#62;
			foreach ($topics as $topic) {&#60;br /&#62;
				$posts[] = bb_get_first_post($topic-&#62;topic_id);&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;			$title = esc_html( sprintf( __( &#39;%1$s  Tag: %2$s - Recent Topics&#39; ), bb_get_option( &#39;name&#39; ), bb_get_tag_name() ) );&#60;br /&#62;
			$link = bb_get_tag_link($feed_id);&#60;br /&#62;
			$link_self = bb_get_tag_topics_rss_link($feed_id);&#60;br /&#62;
			break;&#60;/p&#62;
&#60;p&#62;		case &#39;tag-posts&#39;:&#60;br /&#62;
			if ( !$tag = bb_get_tag( $feed_id ) )&#60;br /&#62;
				die();&#60;br /&#62;
			if ( !$posts = get_tagged_topic_posts( array( &#39;tag_id&#39; =&#62; $tag-&#62;tag_id, &#39;page&#39; =&#62; 0 ) ) )&#60;br /&#62;
				die();&#60;br /&#62;
			$title = esc_html( sprintf( __( &#39;%1$s  Tag: %2$s - Recent Posts&#39; ), bb_get_option( &#39;name&#39; ), bb_get_tag_name() ) );&#60;br /&#62;
			$link = bb_get_tag_link($feed_id);&#60;br /&#62;
			$link_self = bb_get_tag_posts_rss_link($feed_id);&#60;br /&#62;
			break;&#60;/p&#62;
&#60;p&#62;		case &#39;forum-topics&#39;:&#60;br /&#62;
			if ( !$topics = get_latest_topics( $feed_id ) )&#60;br /&#62;
				die();&#60;/p&#62;
&#60;p&#62;			$posts = array();&#60;br /&#62;
			foreach ($topics as $topic) {&#60;br /&#62;
				$posts[] = bb_get_first_post($topic-&#62;topic_id);&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;			$title = esc_html( sprintf( __( &#39;%1$s  Forum: %2$s - Recent Topics&#39; ), bb_get_option( &#39;name&#39; ), get_forum_name( $feed_id ) ) );&#60;br /&#62;
			$link = get_forum_link($feed_id);&#60;br /&#62;
			$link_self = bb_get_forum_topics_rss_link($feed_id);&#60;br /&#62;
			break;&#60;/p&#62;
&#60;p&#62;		case &#39;forum-posts&#39;:&#60;br /&#62;
			if ( !$posts = bb_get_latest_forum_posts( $feed_id ) )&#60;br /&#62;
				die();&#60;br /&#62;
			$title = esc_html( sprintf( __( &#39;%1$s  Forum: %2$s - Recent Posts&#39; ), bb_get_option( &#39;name&#39; ), get_forum_name( $feed_id ) ) );&#60;br /&#62;
			$link = get_forum_link($feed_id);&#60;br /&#62;
			$link_self = bb_get_forum_posts_rss_link($feed_id);&#60;br /&#62;
			break;&#60;/p&#62;
&#60;p&#62;		// Get just the first post from the latest topics&#60;br /&#62;
		case &#39;all-topics&#39;:&#60;br /&#62;
			if ( !$topics = get_latest_topics() )&#60;br /&#62;
				die();&#60;/p&#62;
&#60;p&#62;			$posts = array();&#60;br /&#62;
			foreach ($topics as $topic) {&#60;br /&#62;
				$posts[] = bb_get_first_post($topic-&#62;topic_id);&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;			$title = esc_html( sprintf( __( &#39;%1$s  Recent Topics&#39; ), bb_get_option( &#39;name&#39; ) ) );&#60;br /&#62;
			$link = bb_get_uri();&#60;br /&#62;
			$link_self = bb_get_topics_rss_link();&#60;br /&#62;
			break;&#60;/p&#62;
&#60;p&#62;		// Get latest posts by default&#60;br /&#62;
		case &#39;all-posts&#39;:&#60;br /&#62;
		default:&#60;br /&#62;
			if ( !$posts = bb_get_latest_posts( 35 ) )&#60;br /&#62;
				die();&#60;br /&#62;
			$title = esc_html( sprintf( __( &#39;%1$s  Recent Posts&#39; ), bb_get_option( &#39;name&#39; ) ) );&#60;br /&#62;
			$link = bb_get_uri();&#60;br /&#62;
			$link_self = bb_get_posts_rss_link();&#60;br /&#62;
			break;&#60;br /&#62;
	}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;bb_send_304( $posts[0]-&#62;post_time );&#60;/p&#62;
&#60;p&#62;if (!$description = esc_html( bb_get_option(&#39;description&#39;) )) {&#60;br /&#62;
	$description = $title;&#60;br /&#62;
}&#60;br /&#62;
$title = apply_filters( &#39;bb_title_rss&#39;, $title, $feed );&#60;br /&#62;
$description = apply_filters( &#39;bb_description_rss&#39;, $description, $feed );&#60;br /&#62;
$posts = apply_filters( &#39;bb_posts_rss&#39;, $posts, $feed );&#60;br /&#62;
$link_self = apply_filters( &#39;bb_link_self_rss&#39;, $link_self, $feed );&#60;/p&#62;
&#60;p&#62;bb_load_template( &#39;rss2.php&#39;, array(&#39;bb_db_override&#39;, &#39;title&#39;, &#39;description&#39;, &#39;link&#39;, &#39;link_self&#39;), $feed );&#60;/p&#62;
&#60;p&#62;?&#62;</code></pre>]]></description>
					</item>
		<item>
			<title>chrishajer on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-66251</link>
			<pubDate>Tue, 23 Mar 2010 18:28:36 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">66251@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I think a patch was posted.  Have you tried that?  <a href="http://trac.bbpress.org/ticket/1209" rel="nofollow">http://trac.bbpress.org/ticket/1209</a>
</p>]]></description>
					</item>
		<item>
			<title>Dailytalker on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-66248</link>
			<pubDate>Tue, 23 Mar 2010 18:22:27 +0000</pubDate>
			<dc:creator>Dailytalker</dc:creator>
			<guid isPermaLink="false">66248@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Is there somebody who knows how to fix the rss problem?
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-66196</link>
			<pubDate>Mon, 22 Mar 2010 20:20:44 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">66196@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I've been wondering about this.  I applied the patch and had the same experience.  So my question is, how do RSS feeds actually work?  Should the feed be shown using the patched rss.php file immediately, or is there some time delay, or do you need to publish some content to update the feed?  When you call up a feed URL in the browser, what happens?</p>
<p>My experience was the same when applying the patch, but then I wondered how soon I should have seen the results.
</p>]]></description>
					</item>
		<item>
			<title>yoyopop on "All RSS Feeds Broken?"</title>
			<link>http://bbpress.org/forums/topic/all-rss-feeds-broken/page/2#post-66183</link>
			<pubDate>Mon, 22 Mar 2010 13:01:09 +0000</pubDate>
			<dc:creator>yoyopop</dc:creator>
			<guid isPermaLink="false">66183@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@ kawauso</p>
<p>I applied the patches suggested via the trac and your comments but my rss feed is still returning invalid in Chrome, Opera and Firefox (in Safari it works fine)</p>
<p>it does seem to be something wrong with the markup via an extra space in front of the xml declaration somewhere...</p>
<p>Anyone have any ideas??</p>
<p>Chrome:</p>
<blockquote><p>error on line 1 at column 6: XML declaration allowed only at the start of the document
</p></blockquote>
<p>Opera:</p>
<blockquote><p>XML parsing failed: syntax error (Line: 1, Character: 1)</p>
<p>Error:XML declaration not at beginning of document
</p></blockquote>
<p>and it shows a space in front of the initial <code>&#60;? xml</code></p>
<p>Firefox:</p>
<blockquote><p>XML Parsing Error: XML or text declaration not at start of entity<br />
Location: /rss.php?topic=2074<br />
Line Number 1, Column 2: &#60;?xml version="1.0" encoding="UTF-8"?&#62;<br />
-^
</p></blockquote>]]></description>
					</item>
		<item>
			<title>James Blacker on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-65477</link>
			<pubDate>Mon, 01 Mar 2010 17:47:07 +0000</pubDate>
			<dc:creator>James Blacker</dc:creator>
			<guid isPermaLink="false">65477@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Tom also provided the follwing, which worked for me after I couldn't get any of the above to work.</p>
<p><a href="http://bbpress.org/forums/topic/are-usernames-with-spaces-sensible" rel="nofollow">http://bbpress.org/forums/topic/are-usernames-with-spaces-sensible</a>
</p>]]></description>
					</item>
		<item>
			<title>dcheung19 on "Customizing Profile Fields"</title>
			<link>http://bbpress.org/forums/topic/customizing-profile-fields#post-58935</link>
			<pubDate>Wed, 30 Sep 2009 16:10:52 +0000</pubDate>
			<dc:creator>dcheung19</dc:creator>
			<guid isPermaLink="false">58935@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I've used this method, but with a little change, instead of creating a variable i'm just returning the array.<br />
There is no problems when the user is registering, but when I try to edit the fields it's not saving to the database, any help please
</p>]]></description>
					</item>
		<item>
			<title>kirpi.it on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58435</link>
			<pubDate>Tue, 22 Sep 2009 09:48:50 +0000</pubDate>
			<dc:creator>kirpi.it</dc:creator>
			<guid isPermaLink="false">58435@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Ok, this one works smooth!<br />
:-)<br />
Thanks again.
</p>]]></description>
					</item>
		<item>
			<title>Adam Harley on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58400</link>
			<pubDate>Mon, 21 Sep 2009 22:29:22 +0000</pubDate>
			<dc:creator>Adam Harley</dc:creator>
			<guid isPermaLink="false">58400@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><code>&#60;?php bb_profile_link( array( &#39;id&#39; =&#62; get_post_author_id(), &#39;text&#39; =&#62; get_post_author() ) ); ?&#62;</code></p>
<p>@bbback: you can avoid echoing <code>get_</code> functions by dropping the <code>get_</code>, there's always an echo alias function</p>
<p>@kirpi.it: my bad, I left it using an echo function rather than returning the output
</p>]]></description>
					</item>
		<item>
			<title>bbhack on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58396</link>
			<pubDate>Mon, 21 Sep 2009 21:56:55 +0000</pubDate>
			<dc:creator>bbhack</dc:creator>
			<guid isPermaLink="false">58396@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Do this:</p>
<p><code>&#60;a href=&#34;&#60;?php echo esc_attr( get_user_profile_link( get_post_author_id() ) ); ?&#62;&#34;&#62;&#60;?php echo get_post_author(); ?&#62;&#60;/a&#62;</code>
</p>]]></description>
					</item>
		<item>
			<title>kirpi.it on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58354</link>
			<pubDate>Mon, 21 Sep 2009 07:34:20 +0000</pubDate>
			<dc:creator>kirpi.it</dc:creator>
			<guid isPermaLink="false">58354@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Nope, Kawauso.</p>
<p><code>&#60;?php bb_get_profile_link(post_author()); ?&#62;</code><br />
just renders the poster name, without any link.
</p>]]></description>
					</item>
		<item>
			<title>gerikg on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58314</link>
			<pubDate>Sun, 20 Sep 2009 15:10:22 +0000</pubDate>
			<dc:creator>gerikg</dc:creator>
			<guid isPermaLink="false">58314@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>sorry about that.  I forget people use permalinks.
</p>]]></description>
					</item>
		<item>
			<title>Adam Harley on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58313</link>
			<pubDate>Sun, 20 Sep 2009 14:59:56 +0000</pubDate>
			<dc:creator>Adam Harley</dc:creator>
			<guid isPermaLink="false">58313@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You shouldn't need the separate <code>&#60;a&#62;</code> tag, that function should be returning a complete <code>&#60;a&#62;</code> tag with the text passed to it (or using the ID number if one is given)
</p>]]></description>
					</item>
		<item>
			<title>kirpi.it on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58312</link>
			<pubDate>Sun, 20 Sep 2009 13:14:56 +0000</pubDate>
			<dc:creator>kirpi.it</dc:creator>
			<guid isPermaLink="false">58312@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Yes, this seems to do the trick<br />
<pre><code>&#60;a href=&#34;http://www.example.com/forum/profile/&#60;?php bb_get_profile_link(post_author()); ?&#62;&#34;&#62;
&#60;?php bb_get_profile_link(post_author()); ?&#62;
&#60;/a&#62;</code></pre>
<p>Hardcoding the path is not nice, but at least it works.</p>
<p>:-)<br />
Thank you!
</p>]]></description>
					</item>
		<item>
			<title>Adam Harley on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58311</link>
			<pubDate>Sun, 20 Sep 2009 12:05:58 +0000</pubDate>
			<dc:creator>Adam Harley</dc:creator>
			<guid isPermaLink="false">58311@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>bb_get_profile_link(post_author()) would probably work
</p>]]></description>
					</item>
		<item>
			<title>kirpi.it on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58310</link>
			<pubDate>Sun, 20 Sep 2009 10:51:44 +0000</pubDate>
			<dc:creator>kirpi.it</dc:creator>
			<guid isPermaLink="false">58310@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>So, if I now understand right, I cannot use any piece of it.<br />
:-(</p>
<p>Would it really be that hard to get the poster name and link it to his/her profile page, quite simply?<br />
I cannot find how.
</p>]]></description>
					</item>
		<item>
			<title>Adam Harley on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58309</link>
			<pubDate>Sun, 20 Sep 2009 10:47:37 +0000</pubDate>
			<dc:creator>Adam Harley</dc:creator>
			<guid isPermaLink="false">58309@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It's generated by the template <code>logged-in.php</code>, which in Kakumei looks like:<br />
<pre><code>&#60;p class=&#34;login&#34;&#62;
	&#60;?php printf(__(&#39;Welcome, %1$s&#39;), bb_get_profile_link(bb_get_current_user_info( &#39;name&#39; )));?&#62;
	&#60;?php bb_admin_link( &#39;before= &#124; &#39; );?&#62;
	&#124; &#60;?php bb_logout_link(); ?&#62;
&#60;/p&#62;</code></pre>
<p>So you'd want <code>bb_get_profile_link(bb_get_current_user_info( &#39;name&#39; ))</code>
</p>]]></description>
					</item>
		<item>
			<title>kirpi.it on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58307</link>
			<pubDate>Sun, 20 Sep 2009 06:31:02 +0000</pubDate>
			<dc:creator>kirpi.it</dc:creator>
			<guid isPermaLink="false">58307@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Yet something is wrong. It does not work.</p>
<p>Link should most probably look like<br />
<code><a href="http://www.example.com/forum/profile/user" rel="nofollow">http://www.example.com/forum/profile/user</a></code></p>
<p>The right code is probably hidden in the header, where it says</p>
<p><code>Welcome, User &#124; Log Out</code></p>
<p>That  <code>User</code>  link is the one I'm after, but cannot find out how it is built.
</p>]]></description>
					</item>
		<item>
			<title>gerikg on "How to keep just  Display Name which links to Profile in posts"</title>
			<link>http://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58306</link>
			<pubDate>Sun, 20 Sep 2009 06:22:29 +0000</pubDate>
			<dc:creator>gerikg</dc:creator>
			<guid isPermaLink="false">58306@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><code>&#60;a href=&#34;profile.php?id=&#60;?php echo get_post_author_id(); ?&#62;&#34;&#62;&#60;?php post_author();?&#62;&#60;/a&#62;</code>
</p>]]></description>
					</item>

	</channel>
</rss>

