<?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; Topic: missing attributes after upgrade to 0.8.2.1</title>
		<link>http://bbpress.org/forums/topic/missing-attributes-after-upgrade-to-0821</link>
		<description>bbPress Support Forums &#187; Topic: missing attributes after upgrade to 0.8.2.1</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 10:00:18 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/topic/missing-attributes-after-upgrade-to-0821" rel="self" type="application/rss+xml" />

		<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><![CDATA[<p>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.</p>
<p>Might it be some server setting?</p>
<p>Currently experiencing on three different machines, very similar setups though.  I will test this on a different machine/setup tonight.
</p>]]></description>
					</item>
		<item>
			<title>Michael Adams (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>Michael Adams (mdawaffe)</dc:creator>
			<guid isPermaLink="false">8547@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>What bbPress and WordPress plugins do you have installed?</p>
<p>I haven't been able to reproduce this on my machine (no plugins for either).
</p>]]></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><![CDATA[<p><a href="http://trac.bbpress.org/ticket/675" rel="nofollow">http://trac.bbpress.org/ticket/675</a>
</p>]]></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><![CDATA[<p>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....
</p>]]></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><![CDATA[<p>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.
</p>]]></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><![CDATA[<p>I no longer have element attributes such as href, title, rel, or cite for content posted by users.  For example:<br />
<code>This is a &#60;a href=&#34;http://www.link.com&#34; title=&#34;a link&#34;&#62;Link&#60;/a&#62;</code></p>
<p>becomes:</p>
<p><code>&#60;a&#62;Link&#60;/a&#62;</code></p>
<p>i figured this was something in bb-includes/formatting functions, but everything looks right to me:</p>
<pre><code>function bb_allowed_tags() {
	$tags = array(
		&#39;a&#39; =&#62; array(
			&#39;href&#39; =&#62; array(),
			&#39;title&#39; =&#62; array(),
			&#39;rel&#39; =&#62; array()),
		&#39;blockquote&#39; =&#62; array(&#39;cite&#39; =&#62; array()),
		&#39;br&#39; =&#62; array(),
		&#39;code&#39; =&#62; array(),
		&#39;pre&#39; =&#62; array(),
		&#39;em&#39; =&#62; array(),
		&#39;strong&#39; =&#62; array(),
		&#39;ul&#39; =&#62; array(),
		&#39;ol&#39; =&#62; array(),
		&#39;li&#39; =&#62; array()
	);
	return apply_filters( &#39;bb_allowed_tags&#39;, $tags );
}</code></pre>
<p>does anyone have any ideas?
</p>]]></description>
					</item>

	</channel>
</rss>

