<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: wp 2.2.1</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: wp 2.2.1</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 05:56:13 +0000</pubDate>

<item>
<title>atomAstro on "missing attributes after upgrade to 0.8.2.1"</title>
<link>http://bbpress.org/forums/topic/missing-attributes-after-upgrade-to-0821#post-8572</link>
<pubDate>Thu, 28 Jun 2007 19:57:20 +0000</pubDate>
<dc:creator>atomAstro</dc:creator>
<guid isPermaLink="false">8572@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Tested and experiencing the bug with no plugins on both WP 2.2.1 and WPMU 1.2.3.  Only happens if wp-blog-header.php is inlcuded in the config.php for bbPress.&#60;/p&#62;
&#60;p&#62;Might it be some server setting?&#60;/p&#62;
&#60;p&#62;Currently experiencing on three different machines, very similar setups though.  I will test this on a different machine/setup tonight.
&#60;/p&#62;</description>
</item>
<item>
<title>mdawaffe on "missing attributes after upgrade to 0.8.2.1"</title>
<link>http://bbpress.org/forums/topic/missing-attributes-after-upgrade-to-0821#post-8547</link>
<pubDate>Thu, 28 Jun 2007 03:26:42 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">8547@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What bbPress and WordPress plugins do you have installed?&#60;/p&#62;
&#60;p&#62;I haven't been able to reproduce this on my machine (no plugins for either).
&#60;/p&#62;</description>
</item>
<item>
<title>atomAstro on "missing attributes after upgrade to 0.8.2.1"</title>
<link>http://bbpress.org/forums/topic/missing-attributes-after-upgrade-to-0821#post-8501</link>
<pubDate>Tue, 26 Jun 2007 22:10:35 +0000</pubDate>
<dc:creator>atomAstro</dc:creator>
<guid isPermaLink="false">8501@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/ticket/675&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/675&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>atomAstro on "missing attributes after upgrade to 0.8.2.1"</title>
<link>http://bbpress.org/forums/topic/missing-attributes-after-upgrade-to-0821#post-8500</link>
<pubDate>Tue, 26 Jun 2007 22:00:24 +0000</pubDate>
<dc:creator>atomAstro</dc:creator>
<guid isPermaLink="false">8500@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This issue has now been confirmed with WP 2.2.1 as well.  All attributes from html elements are stripped.  It only happens after wp-blog-header is included, everything seems to work fine when its running alone.  Heading over to trac....
&#60;/p&#62;</description>
</item>
<item>
<title>atomAstro on "missing attributes after upgrade to 0.8.2.1"</title>
<link>http://bbpress.org/forums/topic/missing-attributes-after-upgrade-to-0821#post-8498</link>
<pubDate>Tue, 26 Jun 2007 21:45:46 +0000</pubDate>
<dc:creator>atomAstro</dc:creator>
<guid isPermaLink="false">8498@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have confirmed this issue with a squeaky clean install of wpmu 1.2.3 + bbPress 0.8.2.1.  All attributes are stripped from html elements included in a post.  Now installing and testing with plain old WP 2.2.1, will report back shortly.
&#60;/p&#62;</description>
</item>
<item>
<title>atomAstro on "missing attributes after upgrade to 0.8.2.1"</title>
<link>http://bbpress.org/forums/topic/missing-attributes-after-upgrade-to-0821#post-8495</link>
<pubDate>Tue, 26 Jun 2007 15:46:38 +0000</pubDate>
<dc:creator>atomAstro</dc:creator>
<guid isPermaLink="false">8495@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I no longer have element attributes such as href, title, rel, or cite for content posted by users.  For example:&#60;br /&#62;
&#60;code&#62;This is a &#38;lt;a href=&#38;quot;http://www.link.com&#38;quot; title=&#38;quot;a link&#38;quot;&#38;gt;Link&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;becomes:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;a&#38;gt;Link&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;i figured this was something in bb-includes/formatting functions, but everything looks right to me:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bb_allowed_tags() {
	$tags = array(
		&#38;#39;a&#38;#39; =&#38;gt; array(
			&#38;#39;href&#38;#39; =&#38;gt; array(),
			&#38;#39;title&#38;#39; =&#38;gt; array(),
			&#38;#39;rel&#38;#39; =&#38;gt; array()),
		&#38;#39;blockquote&#38;#39; =&#38;gt; array(&#38;#39;cite&#38;#39; =&#38;gt; array()),
		&#38;#39;br&#38;#39; =&#38;gt; array(),
		&#38;#39;code&#38;#39; =&#38;gt; array(),
		&#38;#39;pre&#38;#39; =&#38;gt; array(),
		&#38;#39;em&#38;#39; =&#38;gt; array(),
		&#38;#39;strong&#38;#39; =&#38;gt; array(),
		&#38;#39;ul&#38;#39; =&#38;gt; array(),
		&#38;#39;ol&#38;#39; =&#38;gt; array(),
		&#38;#39;li&#38;#39; =&#38;gt; array()
	);
	return apply_filters( &#38;#39;bb_allowed_tags&#38;#39;, $tags );
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;does anyone have any ideas?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
