<?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: fernandot</title>
		<link>http://bbpress.org/forums/profile/</link>
		<description>bbPress Support Forums &#187; User Favorites: fernandot</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 16:07:06 +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>PascalFromParis on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-97791</link>
			<pubDate>Thu, 02 Feb 2012 20:36:33 +0000</pubDate>
			<dc:creator>PascalFromParis</dc:creator>
			<guid isPermaLink="false">97791@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hello,</p>
<p>It's the same problem for me.</p>
<p>External links are broken. The href="externallink.com" disappear after using the code.</p>
<p>I am not a developer, just a blogger who is looking for solutions, but something seems strange to me In this line :<br />
<code><br />
$text = preg_replace('&#124;<a>]+http\:\/\/))(?!([^&#62;]+'.$domain.'))(.+)&#62;&#124;iU', '</a><a rel="nofollow">', $text); </a></code></p>
<p>It seems that all the content of ' a ' is replaced by ' a rel="nofollow" target="blank" '</p>
<p>So, the href="..."  disappear
</p>]]></description>
					</item>
		<item>
			<title>Mike1233 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90713</link>
			<pubDate>Sat, 13 Aug 2011 05:25:45 +0000</pubDate>
			<dc:creator>Mike1233</dc:creator>
			<guid isPermaLink="false">90713@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>i need this too.</p>
<p>links in new windows an with nofollow<br />
only own url links in same windows without nofollow.
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90706</link>
			<pubDate>Fri, 12 Aug 2011 20:03:58 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">90706@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Still not working :(</p>
<p>The code is coming through differently in my email, so I posted a link to it making sure I have the syntax right:  <a href="http://pastie.org/2362857" rel="nofollow">http://pastie.org/2362857</a></p>
<p>Internal links are still ok; external links look like this in Firebug:<br />
<a href="https://picasaweb.google.com/lh/photo/Px6V4Z7PfKk6Gpv5x_Uh4Q?feat=directlink" rel="nofollow">https://picasaweb.google.com/lh/photo/Px6V4Z7PfKk6Gpv5x_Uh4Q?feat=directlink</a>
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90704</link>
			<pubDate>Fri, 12 Aug 2011 19:51:07 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">90704@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I just realized I am not escaping <code>&#60;</code> and <code>&#62;</code> in that code.</p>
<p>It most probably should be.</p>
<p>So anywhere you do not see a slash in front, add one, ie.</p>
<p><code>\&#60;</code></p>
<p><code>\&#62;</code></p>
<p>actually to be more clear, try this</p>
<pre><code>$text = preg_replace(&#039;&#124;\&#60;a (.*)rel=[\&#039;&#34;]nofollow[\&#039;&#34;]([^&#62;]+)?\&#62;&#124;iU&#039;,&#039;&#60;a &#62;&#039;, $text);	// strip ALL nofollow
$text = preg_replace(&#039;&#124;\&#60;a (?=([^&#62;]+http\:\/\/))(?!([^&#62;]+&#039;.$domain.&#039;))([^&#62;]+)\&#62;&#124;iU&#039;, &#039;&#60;a  rel=&#34;nofollow&#34; target=&#34;_blank&#34;&#62;&#039;, $text);</code></pre>
<p>sorry, don't have time to debug it more, someone will have to throw it into a regex tester and check it against some same sample links
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90703</link>
			<pubDate>Fri, 12 Aug 2011 19:36:44 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">90703@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi @_ck_</p>
<p>Thanks for the help.  I tried what you posted, but it's still not working.  </p>
<p>It fixed the broken URLs, but strips the target="_blank" and rel="nofollow" attributes.  It looks like the second function (for external links) isn't firing off.  </p>
<p>Will keep working on it and post an update if I figure it out.</p>
<p>I really appreciate your help!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90700</link>
			<pubDate>Fri, 12 Aug 2011 17:21:14 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">90700@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Don't really have the time to debug all that but if it's selecting too much, try replacing this </p>
<p><code>(.+)</code></p>
<p>with this</p>
<p><code>([^&#62;]+)</code></p>
<p>which hopefully will stop it from going past the end of the anchor tag
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90697</link>
			<pubDate>Fri, 12 Aug 2011 16:13:04 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">90697@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@_ck_, Nevermind my earlier post.  It is already working on sub-domains.  Sorry for the confusion.</p>
<p>However, I am having the same problem as @cwdnow.  Internal links are working as expected: they open in same window with "nofollow" tag removed.</p>
<p>The code is broken when it deals with external links, though.  It adds the attributes target="_blank" and rel="nofollow" but the URL is broken.  I haven't dug too deep yet, but I think the reg ex is too broad (selecting too much).  </p>
<p>Here is the code that I'm using:<br />
<a href="http://pastie.org/2361825" rel="nofollow">http://pastie.org/2361825</a></p>
<p>Here is what it is outputting:<br />
<a href="https://picasaweb.google.com/lh/photo/Px6V4Z7PfKk6Gpv5x_Uh4Q?feat=directlink" rel="nofollow">https://picasaweb.google.com/lh/photo/Px6V4Z7PfKk6Gpv5x_Uh4Q?feat=directlink</a></p>
<p>I will post an update if I figure out what it is.  In the meantime, do you happen to know what is causing this?
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90694</link>
			<pubDate>Fri, 12 Aug 2011 14:07:43 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">90694@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@_ck_, I am using your code to open external links in a new window and add the attribute "nofollow"</p>
<p>My site also has sub-domains, so I wanted to add a case for that. My reg ex skills are not that great.  Do you know how I could do that?</p>
<p>Code I'm using:<br />
<a href="http://pastie.org/2361268" rel="nofollow">http://pastie.org/2361268</a></p>
<p>Thanks for your help!!
</p>]]></description>
					</item>
		<item>
			<title>cwdnow on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-89859</link>
			<pubDate>Sun, 17 Jul 2011 17:06:33 +0000</pubDate>
			<dc:creator>cwdnow</dc:creator>
			<guid isPermaLink="false">89859@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The long _ck_ version half works - it links, removes the nofollow tag, and adds target="_blank" to internal links. But external links aren't linked - just the CSS is applied. Could you post a pastie of the long version of your code?
</p>]]></description>
					</item>
		<item>
			<title>ImpossibleMe on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-86909</link>
			<pubDate>Sat, 30 Apr 2011 10:55:12 +0000</pubDate>
			<dc:creator>ImpossibleMe</dc:creator>
			<guid isPermaLink="false">86909@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Is there a solution for conversion the other way around?
</p>]]></description>
					</item>
		<item>
			<title>justmichael2 on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-86904</link>
			<pubDate>Sat, 30 Apr 2011 03:20:45 +0000</pubDate>
			<dc:creator>justmichael2</dc:creator>
			<guid isPermaLink="false">86904@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This did not work for me. The first time I tried it, I got as far as "Convert Posts" then got this:</p>
<p>GENERAL ERROR</p>
<p>SQL ERROR [ mysqli ]<br />
Data too long for column 'user_url' at row 1 <a href="http://trac.bbpress.org/changeset/1406">[1406]</a></p>
<p>I then tried again (having no idea what to do), and got this error message:</p>
<p>SQL ERROR</p>
<p>Duplicate entry '1' for key 'PRIMARY' <a href="http://trac.bbpress.org/changeset/1062">[1062]</a> followed by a bunch of text that seems to replicate the key.
</p>]]></description>
					</item>
		<item>
			<title>DarkWolf.it on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-83807</link>
			<pubDate>Wed, 02 Mar 2011 14:50:05 +0000</pubDate>
			<dc:creator>DarkWolf.it</dc:creator>
			<guid isPermaLink="false">83807@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I've make this with only one database (all 3 script in same database) but i don't have found any way to convert a specific board (news board, atm used to publish article in home page with smf) in wordpress articles :/<br />
I can try with rss but with this i can't import also reply.<br />
Any idea for this?
</p>]]></description>
					</item>
		<item>
			<title>kenburcham on "TalkPress suggestions"</title>
			<link>http://bbpress.org/forums/topic/talkpress-suggestions#post-76001</link>
			<pubDate>Fri, 05 Nov 2010 22:49:08 +0000</pubDate>
			<dc:creator>kenburcham</dc:creator>
			<guid isPermaLink="false">76001@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks... We would love to be able to use the channels extension.  If there's anything we can do...  just tell us where to send the chocolate or beer or whatever. :)  Thanks!
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "TalkPress suggestions"</title>
			<link>http://bbpress.org/forums/topic/talkpress-suggestions#post-75986</link>
			<pubDate>Fri, 05 Nov 2010 11:04:46 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">75986@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Th bbPress plugin will actually help make this happen, possibly by way of using WordPress multisite and letting each site/network have their own bbPress setup.</p>
<p>If you wanted to use existing bbPress stand alone, I'm not sure where the channels code is to see if it's available to share. Will see what I can did out.
</p>]]></description>
					</item>
		<item>
			<title>kenburcham on "TalkPress suggestions"</title>
			<link>http://bbpress.org/forums/topic/talkpress-suggestions#post-75970</link>
			<pubDate>Thu, 04 Nov 2010 20:24:26 +0000</pubDate>
			<dc:creator>kenburcham</dc:creator>
			<guid isPermaLink="false">75970@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>bump. :) after reading wordpress and bbpress forums and posts and ... finally coming to the realization that what I'm looking for is this "bbpress channels" extension.  I'd love to know when it might be available?  We're going to unleash bbpress on hundreds of sites via a multisite server if we can get bbmu to work...  I 'spose I can write my own extension, but it'd be more fun to install and tweak yours. :)  thanks!
</p>]]></description>
					</item>
		<item>
			<title>bobbykjack on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-74923</link>
			<pubDate>Fri, 15 Oct 2010 15:38:53 +0000</pubDate>
			<dc:creator>bobbykjack</dc:creator>
			<guid isPermaLink="false">74923@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@luminousnerd: Can you provide links to the research you've carried out? Sounds like it would be very useful.</p>
<p>I have to say, I'm sceptical about your conclusions. If "opening external links in the same windows [sic] is extremely foolish" for "someone trying to make money with their site", isn't it foolish to have those external links in the first place?
</p>]]></description>
					</item>
		<item>
			<title>cwdnow on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-74878</link>
			<pubDate>Thu, 14 Oct 2010 17:46:24 +0000</pubDate>
			<dc:creator>cwdnow</dc:creator>
			<guid isPermaLink="false">74878@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>None of these seem to work for me in the latest version of bbPress. Any ideas on how to get this working?
</p>]]></description>
					</item>
		<item>
			<title>bkno on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-72517</link>
			<pubDate>Sat, 07 Aug 2010 23:45:13 +0000</pubDate>
			<dc:creator>bkno</dc:creator>
			<guid isPermaLink="false">72517@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@Josh - Thanks for posting this. Massively useful, I was unaware of a the conversion script.</p>
<p>@Sincever - I think the script will convert the SMF/phpBB users to bbPress users. You could then move all the tables into a single database, but that in itself wouldn't change which table bbPress uses for users. This answers your question, but if you're referring more to WordPress users vs bbPress users and reconciling that, I can't comment as I've not tried the integration before.
</p>]]></description>
					</item>
		<item>
			<title>Sincever on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-72405</link>
			<pubDate>Thu, 05 Aug 2010 21:09:46 +0000</pubDate>
			<dc:creator>Sincever</dc:creator>
			<guid isPermaLink="false">72405@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thank you very much for your response!</p>
<p>But if I understand this tutorial, for the convert SMF to bbPress it's not possible to use the same database?</p>
<p>(sorry for my bad english)
</p>]]></description>
					</item>
		<item>
			<title>zaerl on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-72399</link>
			<pubDate>Thu, 05 Aug 2010 20:42:32 +0000</pubDate>
			<dc:creator>zaerl</dc:creator>
			<guid isPermaLink="false">72399@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>BBpress don't use a wordpress database with the wordpress users? </p></blockquote>
<p><a href="http://bbpress.org/documentation/integration-with-wordpress/" rel="nofollow">http://bbpress.org/documentation/integration-with-wordpress/</a></p>
<p>"bbPress can share user data with an existing WordPress installation. All you need to do is specify the location of that database on installation or afterwards in the “WordPress Integration” section of the “Settings” area in your bbPress admin"
</p>]]></description>
					</item>
		<item>
			<title>Sincever on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-72397</link>
			<pubDate>Thu, 05 Aug 2010 20:01:01 +0000</pubDate>
			<dc:creator>Sincever</dc:creator>
			<guid isPermaLink="false">72397@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi!!<br />
Question: BBpress don't use a wordpress database with the wordpress users?
</p>]]></description>
					</item>
		<item>
			<title>luminousnerd on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-71729</link>
			<pubDate>Sun, 25 Jul 2010 02:49:59 +0000</pubDate>
			<dc:creator>luminousnerd</dc:creator>
			<guid isPermaLink="false">71729@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This is more than just personal preference I'm afraid, it's an issue of statistics. More often than not, if you don't open external links with a new window or tab, the visitor will never come back to your site. I've seen this statistic prove true on several dozen websites and I'm 100% convinced it's true.</p>
<p>Sure, some people get all self-righteous about it, and you may lose them because of that, but in exchange you won't lose the much, much more numerous amount of people who simply would have forgotten to come back. Sorry, I know it's slightly annoying on the user end, but from the perspective of someone trying to make money with their site, opening external links in the same windows is extremely foolish.</p>
<p>Edit, ah crap this one's old too. My bad
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-71205</link>
			<pubDate>Fri, 16 Jul 2010 18:33:10 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">71205@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks for posting that Josh
</p>]]></description>
					</item>
		<item>
			<title>Josh Stauffer on "Successfully Convert SMF 1.1.11 to bbPress 1.0.2"</title>
			<link>http://bbpress.org/forums/topic/successfully-convert-smf-1111-to-bbpress-102#post-71204</link>
			<pubDate>Fri, 16 Jul 2010 18:01:53 +0000</pubDate>
			<dc:creator>Josh Stauffer</dc:creator>
			<guid isPermaLink="false">71204@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I found several posts about converting SMF to bbPress. Since I just got done with the conversion and it is still fresh on my mind, I figured I would share my notes on the process.</p>
<p>To convert SMF to bbPress, I had to:<br />
-Convert SMF 1.1.11 to phpBB3 (3.0.7)<br />
-Convert phpBB3 (3.0.7) to bbPress 1.0.2</p>
<p>I had SMF setup on a subdomain: forums.mysite.com</p>
<ul>
<li>I created a NEW database separate from the SMF database.</li>
<li>In the root of forums.mysite.com, I created two directories "bbpress" and "phpbb".</li>
<li>I uploaded the uncompressed files of phpBB3 to the "phpbb" directory.</li>
<li>I uploaded the SMF 1.1.x to phpBB3 converter script. It can be found here: <a href="http://www.phpbb.com/customise/db/converter/smf_1.1.x_to_phpbb3/" rel="nofollow">http://www.phpbb.com/customise/db/converter/smf_1.1.x_to_phpbb3/</a></li>
<li>When you install phpBB3, I installed it using the NEW database that I created. I followed the "phpBB Convert How To" guide which can be found here: <a href="http://www.phpbb.com/community/viewtopic.php?f=65&#038;t=1213555" rel="nofollow">http://www.phpbb.com/community/viewtopic.php?f=65&#038;t=1213555</a></li>
<li>At this point, your SMF forum should now be converted to phpBB3.</li>
</ul>
<ul>
<li>Next, I uploaded the uncompressed files of bbPress to the "bbpress" directory and installed bbPress using the same NEW database as phpBB3.</li>
<li>I used the phpbb3-to-bbpress1-converter which is hosted on Google Code. The script is super easy to install and comes with instructions. It can be found here: <a href="http://code.google.com/p/phpbb3-to-bbpress1-converter/" rel="nofollow">http://code.google.com/p/phpbb3-to-bbpress1-converter/</a></li>
<li>Optional: I logged into phpMyAdmin and deleted the tables prefixed with phpbb_ in the NEW database.</li>
<li>Success. It is finished. :-)</li>
</ul>
<p>Honestly, after reading all the posts out there this whole process seemed rather daunting. Let me assure you that it is easier than it sounds.</p>
<p>Thanks to everyone's notes that got me on my way and to the awesome folks out there that took the time to write these scripts to make it even possible.
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Import SMF to bbPress"</title>
			<link>http://bbpress.org/forums/topic/import-smf-to-bbpress#post-70582</link>
			<pubDate>Thu, 01 Jul 2010 17:07:46 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70582@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Wow man, a 2 year old post...</p>
<p>I'd try here: <a href="http://bbpress.org/forums/tags/smf" rel="nofollow">http://bbpress.org/forums/tags/smf</a></p>
<p>3rd one down looks like a winner:<br />
<a href="http://bbpress.org/forums/topic/successfully-convert-smf-20-rc1-to-bbpress-10" rel="nofollow">http://bbpress.org/forums/topic/successfully-convert-smf-20-rc1-to-bbpress-10</a></p>
<p>99/100 the best way is to convert from any forum to phpBB3 and from there to bbPress.</p>
<p>Good Luck
</p>]]></description>
					</item>
		<item>
			<title>matteo on "Import SMF to bbPress"</title>
			<link>http://bbpress.org/forums/topic/import-smf-to-bbpress#post-70581</link>
			<pubDate>Thu, 01 Jul 2010 16:58:33 +0000</pubDate>
			<dc:creator>matteo</dc:creator>
			<guid isPermaLink="false">70581@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hy folks,<br />
so there are new way to import smf forum in a bbpress forum?
</p>]]></description>
					</item>
		<item>
			<title>gasface on "Avatar Upload in bbPress 1.0"</title>
			<link>http://bbpress.org/forums/topic/avatar-upload-in-bbpress-10#post-63612</link>
			<pubDate>Fri, 22 Jan 2010 21:20:12 +0000</pubDate>
			<dc:creator>gasface</dc:creator>
			<guid isPermaLink="false">63612@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>"Make sure you have inserted the code.</p>
<p>Refer to the installation notes you should have got with your download. "</p>
<p>The notes refer to files that dont even exist in the newest release.</p>
<p>ie. there is no "post.php"
</p>]]></description>
					</item>
		<item>
			<title>noz on "Avatar Upload in bbPress 1.0"</title>
			<link>http://bbpress.org/forums/topic/avatar-upload-in-bbpress-10#post-60997</link>
			<pubDate>Fri, 27 Nov 2009 13:22:35 +0000</pubDate>
			<dc:creator>noz</dc:creator>
			<guid isPermaLink="false">60997@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi,<br />
To change it open 'bb-avatar-upload.php' line in my-plugins/ 173<br />
&#62;&#62;  add_profile_tab(__('Avatar') ....  &#62;&#62; put 'Image'</p>
<p>;)
</p>]]></description>
					</item>
		<item>
			<title>circuit on "Help Integrate WordPressMU, Buddypress, and bbpress"</title>
			<link>http://bbpress.org/forums/topic/ill-pay-someone-to-help-integrate-wordpressmu-buddypress-and-bbpress#post-60509</link>
			<pubDate>Tue, 10 Nov 2009 10:08:35 +0000</pubDate>
			<dc:creator>circuit</dc:creator>
			<guid isPermaLink="false">60509@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>thanks everyone - this suggestion of mis-matching 'www's gave me the clue i needed to get my cookies working.
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-60349</link>
			<pubDate>Thu, 05 Nov 2009 23:53:25 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">60349@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>citizenkeith, can you post a URL where it's not working properly?
</p>]]></description>
					</item>

	</channel>
</rss>

