<?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 plugin browser User Favorites: neyoung</title>
<link>http://bbpress.org/plugins/</link>
<description>bbPress plugin browser User Favorites: neyoung</description>
<language>en</language>
<pubDate>Sat, 30 Aug 2008 02:30:38 +0000</pubDate>

<item>
<title>pilola on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1777</link>
<pubDate>Sat, 23 Aug 2008 17:44:55 +0000</pubDate>
<dc:creator>pilola</dc:creator>
<guid isPermaLink="false">1777@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;As mentioned earlier swedish characters å ä ö Å Ä Ö don't work. Is there any way to edit the plugin to get this to work?
&#60;/p&#62;</description>
</item>
<item>
<title>csseur3 on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1723</link>
<pubDate>Sun, 17 Aug 2008 20:58:55 +0000</pubDate>
<dc:creator>csseur3</dc:creator>
<guid isPermaLink="false">1723@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;hello,&#60;/p&#62;
&#60;p&#62;how to add the slash at the end of img src?&#60;/p&#62;
&#60;p&#62;i try this:&#60;br /&#62;
&#60;code&#62;if ( preg_match_all(&#38;#39;/&#38;lt;img(.+?)src=(&#38;quot;&#124;\&#38;#39;)(.+?)\\2(.+?) /&#38;gt;/i&#38;#39;, $text, $matches, PREG_SET_ORDER ) )&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;but not effect.&#60;/p&#62;
&#60;p&#62;/&#38;gt; is the normal end of a img src, please update the plugin :p&#60;/p&#62;
&#60;p&#62;bye
&#60;/p&#62;</description>
</item>
<item>
<title>jifop on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1693</link>
<pubDate>Wed, 13 Aug 2008 10:41:03 +0000</pubDate>
<dc:creator>jifop</dc:creator>
<guid isPermaLink="false">1693@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;&#34;The easiest way to sort out image size problems is to add this code to your .css file:&#60;/p&#62;
&#60;p&#62;.threadpost img&#60;br /&#62;
{&#60;br /&#62;
width:100%;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;it'll limit the width of the image to the width of the thread post area. &#34;&#60;/p&#62;
&#60;p&#62;this is a great solution for large images, however it also stretches all smaller images to 100% use this instead&#60;/p&#62;
&#60;p&#62;.threadpost img&#60;br /&#62;
{&#60;br /&#62;
max-width:100%;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;that should leave all the smaller images alone and only limit those which exceed the posting area
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1622</link>
<pubDate>Tue, 05 Aug 2008 03:50:21 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1622@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;There is also this alternative:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/code-backtick-bug#post-17962&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/code-backtick-bug#post-17962&#60;/a&#62;
&#60;a href=&#34;http://code.google.com/p/llbbsc/wiki/HTMLTagAttributesValidatorPlugin&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/llbbsc/wiki/HTMLTagAttributesValidatorPlugin&#60;/a&#62;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>mrsmiley on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1533</link>
<pubDate>Sat, 26 Jul 2008 19:12:53 +0000</pubDate>
<dc:creator>mrsmiley</dc:creator>
<guid isPermaLink="false">1533@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;so it looks like this works just fine with .0.9.0.2 great mod!
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1514</link>
<pubDate>Wed, 23 Jul 2008 19:22:06 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1514@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;No, no, don't hack the core. There is no need.&#60;br /&#62;
Very easy to add tags in bbpress via plugin.&#60;/p&#62;
&#60;p&#62;The full plugin probably breaks code sections because it tries to do it's own bad tag encoding. You can try a more direct method instead.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: Allow Images (mini-mod)
*/
add_filter( &#38;#39;bb_allowed_tags&#38;#39;, &#38;#39;allow_img_tag&#38;#39; );
function allow_img_tag( $tags ) {$tags[&#38;#39;img&#38;#39;] = array(&#38;#39;src&#38;#39; =&#38;gt; array(), &#38;#39;title&#38;#39; =&#38;gt; array(), &#38;#39;alt&#38;#39; =&#38;gt; array()); return $tags;}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.&#60;br /&#62;
try that instead - note it makes no attempt to verify images
&#60;/p&#62;</description>
</item>
<item>
<title>corenominal on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1507</link>
<pubDate>Wed, 23 Jul 2008 01:24:03 +0000</pubDate>
<dc:creator>corenominal</dc:creator>
<guid isPermaLink="false">1507@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I have the same problem as greenshady, basically the plugin breaks code placed within backticks. This is quite a big problem as allowing users to post code snippets is very important, see below :)  &#60;/p&#62;
&#60;p&#62;So, does anyone have any information about whether a fix is being worked on?&#60;/p&#62;
&#60;p&#62;Note, it is possible to enable images by hacking bb-includes/formatting-functions.php, changing the following function:&#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;To this:&#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;img&#38;#39; =&#38;gt; array(
                        &#38;#39;src&#38;#39; =&#38;gt; array(),
                        &#38;#39;alt&#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;However, it is probably[?] not a wise idea to do so as I am pretty sure this will not provide any sanity checks -- meaning users could possibly use the image tag to call on malicious scripts etc.&#60;/p&#62;
&#60;p&#62;Therefore, fixing this plugin would be a preferable option.
&#60;/p&#62;</description>
</item>
<item>
<title>mrsmiley on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1504</link>
<pubDate>Tue, 22 Jul 2008 20:57:57 +0000</pubDate>
<dc:creator>mrsmiley</dc:creator>
<guid isPermaLink="false">1504@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Is this ever going to be updated to work with bbpress 0.9.x.x? I would really like to use this!
&#60;/p&#62;</description>
</item>
<item>
<title>pjrobertson on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1412</link>
<pubDate>Thu, 03 Jul 2008 13:32:44 +0000</pubDate>
<dc:creator>pjrobertson</dc:creator>
<guid isPermaLink="false">1412@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;The easiest way to sort out image size problems is to add this code to your .css file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.threadpost img
{
width:100%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;it'll limit the width of the image to the width of the thread post area.
&#60;/p&#62;</description>
</item>
<item>
<title>greenshady on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1406</link>
<pubDate>Wed, 25 Jun 2008 19:19:36 +0000</pubDate>
<dc:creator>greenshady</dc:creator>
<guid isPermaLink="false">1406@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Plugin works great for me except for one small problem (well, major in my case). &#60;/p&#62;
&#60;p&#62;Whenever users post code in between backticks, as is the preferred method with bbPress, the code is deleted upon submission of the post form.
&#60;/p&#62;</description>
</item>
<item>
<title>korhan on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1383</link>
<pubDate>Fri, 20 Jun 2008 00:20:45 +0000</pubDate>
<dc:creator>korhan</dc:creator>
<guid isPermaLink="false">1383@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I forgot to mention that, bbpress and wp are separate and have different databases.&#60;/p&#62;
&#60;p&#62;Website: &#60;a href=&#34;http://www.Trabzonspor.mobi&#34; rel=&#34;nofollow&#34;&#62;www.Trabzonspor.mobi&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>korhan on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1382</link>
<pubDate>Fri, 20 Jun 2008 00:19:01 +0000</pubDate>
<dc:creator>korhan</dc:creator>
<guid isPermaLink="false">1382@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have a website wp running on root and bbpress on /forum.&#60;/p&#62;
&#60;p&#62;I like to have latest topics on my wp front page, on the sidebar.&#60;/p&#62;
&#60;p&#62;I have tried to use this plugin but can't have it activated !?! There is a problem and does not activate.&#60;/p&#62;
&#60;p&#62;As I understand, I have to make changes here:&#60;/p&#62;
&#60;p&#62;function bbld_install() {&#60;br /&#62;
	if (get_option('wpbb_status') == FALSE) {&#60;br /&#62;
		$bbpath = '/bbpress'; // Adjust the path to suit your bbpress location. Example: '/forums'&#60;br /&#62;
		$wpbburl = get_settings('home') . $bbpath;&#60;br /&#62;
		update_option('wpbb_path', $wpbburl);&#60;br /&#62;
		$forum_slimit = '10'; // Adjust the limit to show&#60;br /&#62;
		update_option('wpbb_limit', $forum_slimit);&#60;br /&#62;
		$bbdb_prefix = 'bb_'; // Set Bbpress Prefix&#60;br /&#62;
		update_option('wpbb_bbprefix', $bbdb_prefix);&#60;br /&#62;
		$limit = '100';&#60;br /&#62;
		update_option('wpbb_slimit', $limit);&#60;br /&#62;
		update_option('wpbb_permalink', false);&#60;br /&#62;
		update_option('wpbb_intergrated', false);&#60;br /&#62;
		update_option('wpbb_exdb', false);&#60;br /&#62;
		update_option('wpbb_dbuser', DB_USER);&#60;br /&#62;
		update_option('wpbb_dbpass', DB_PASSWORD);&#60;br /&#62;
		update_option('wpbb_dbname', DB_NAME);&#60;br /&#62;
		update_option('wpbb_dbhost', DB_HOST);&#60;br /&#62;
		$install_status = 'install';&#60;br /&#62;
		update_option('wpbb_status', $install_status);&#60;br /&#62;
		update_option('wpbb_lastposter', true);&#60;br /&#62;
		update_option('wpbb_inside', true);&#60;br /&#62;
	}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;### Function: Add Option Page&#60;br /&#62;
add_action('admin_menu', 'wpbb_add_pages');&#60;br /&#62;
function wpbb_add_pages() {&#60;br /&#62;
	add_options_page(__(&#34;BBpress Latest Discussions Option&#34;), __('BbLD Option'), 8, __FILE__, 'wp_bb_option');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;### Function: Trim some text&#60;br /&#62;
function wpbb_trim($paragraph, $limit) {&#60;br /&#62;
	$original = strlen($paragraph);&#60;br /&#62;
	if ($original &#38;gt; $limit) {&#60;br /&#62;
		$text = substr($paragraph, 0, $limit) . &#34; [...]&#34;;&#60;br /&#62;
	}&#60;br /&#62;
	else {&#60;br /&#62;
		$text = $paragraph;&#60;br /&#62;
	}&#60;br /&#62;
	return $text;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;### Function: BBpress Latest Discussions Option&#60;br /&#62;
function wp_bb_option() {&#60;br /&#62;
	global $wpdb,$BbLD_version;&#60;br /&#62;
	$ori_url = $_SERVER['REQUEST_URI'];&#60;br /&#62;
	if ($_POST['wpbb_save']){&#60;br /&#62;
		$test = $_POST['bburl'];&#60;br /&#62;
		update_option('wpbb_path', $test);&#60;br /&#62;
		update_option('wpbb_slimit', $_POST['bbslimit']);&#60;br /&#62;
		update_option('wpbb_limit', $_POST['bblimit']);&#60;br /&#62;
		update_option('wpbb_permalink', $_POST['wpbb_permalink']);&#60;br /&#62;
		update_option('wpbb_intergrated', $_POST['wpbb_intergrated']);&#60;br /&#62;
		update_option('wpbb_bbprefix', $_POST['bbprefix']);&#60;br /&#62;
		update_option('wpbb_exdb', $_POST['use_outdb']);&#60;br /&#62;
		update_option('wpbb_dbuser', $_POST['bbuser']);&#60;br /&#62;
		update_option('wpbb_dbpass', $_POST['bbpass']);&#60;br /&#62;
		update_option('wpbb_dbname', $_POST['bbname']);&#60;br /&#62;
		update_option('wpbb_dbhost', $_POST['bbhost']);&#60;br /&#62;
		update_option('wpbb_lastposter', $_POST['wpbb_lastposter']);&#60;br /&#62;
		update_option('wpbb_inside', $_POST['wpbb_inside']);&#60;br /&#62;
		update_option('wpbb_exclude', $_POST['wpbb_exclude']);&#60;br /&#62;
		$update_msg = &#34;&#38;lt;div id='message' class='updated fade'&#38;gt;&#38;lt;p&#38;gt;BBpress Latest Discussions options saved successfully.&#38;lt;/p&#38;gt;&#38;lt;/div&#38;gt;&#34;;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;But when I enter all the necessary info here, the plugin does not work?!!&#60;/p&#62;
&#60;p&#62;Can someone please help? I am using wordpress 2.3.3 and bbpress 8.3 version.
&#60;/p&#62;</description>
</item>
<item>
<title>korhan on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1365</link>
<pubDate>Sat, 14 Jun 2008 04:08:14 +0000</pubDate>
<dc:creator>korhan</dc:creator>
<guid isPermaLink="false">1365@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;great plugin thanx.
&#60;/p&#62;</description>
</item>
<item>
<title>Guymed on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1275</link>
<pubDate>Tue, 20 May 2008 20:04:00 +0000</pubDate>
<dc:creator>Guymed</dc:creator>
<guid isPermaLink="false">1275@http://bbpress.org/plugins/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;
xD
&#60;/p&#62;&#60;/blockquote&#62;</description>
</item>
<item>
<title>au8ust on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1233</link>
<pubDate>Sun, 11 May 2008 09:34:24 +0000</pubDate>
<dc:creator>au8ust</dc:creator>
<guid isPermaLink="false">1233@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Is it working with WordPress Mu?
&#60;/p&#62;</description>
</item>
<item>
<title>gerikg on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1075</link>
<pubDate>Fri, 25 Apr 2008 06:21:26 +0000</pubDate>
<dc:creator>gerikg</dc:creator>
<guid isPermaLink="false">1075@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;It's a WordPress widget to display the Latest Discussion of BBPress
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1067</link>
<pubDate>Thu, 24 Apr 2008 06:58:55 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1067@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Image size restriction has to be done either via javascript or via your own upload (something I am working on).&#60;/p&#62;
&#60;p&#62;For now you can make sure large images don't mess up your layout by applying &#60;code&#62;overflow:hidden;&#60;/code&#62; to the CSS - my educated guess would be to the &#60;code&#62;.threadpost&#60;/code&#62; element, or &#60;code&#62;#thread&#60;/code&#62; (or &#60;code&#62;#thread li&#60;/code&#62;)
&#60;/p&#62;</description>
</item>
<item>
<title>Farkel on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/3/#post-1064</link>
<pubDate>Wed, 23 Apr 2008 23:38:33 +0000</pubDate>
<dc:creator>Farkel</dc:creator>
<guid isPermaLink="false">1064@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Thanks for this plugin, it works great.&#60;/p&#62;
&#60;p&#62;Is there any way, however, to restrict the image size? If someone posts a large image it completely messed up my layout :(
&#60;/p&#62;</description>
</item>
<item>
<title>tomano on "Bbpress Latest Discussion"</title>
<link>http://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/page/2/#post-1055</link>
<pubDate>Tue, 22 Apr 2008 03:04:04 +0000</pubDate>
<dc:creator>tomano</dc:creator>
<guid isPermaLink="false">1055@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Anda barbaro esto!&#60;br /&#62;
Muchas Gracias&#60;/p&#62;
&#60;p&#62;se puede ver en funcionamiento en &#60;a href=&#34;http://www.argentinoZ.com&#34; rel=&#34;nofollow&#34;&#62;http://www.argentinoZ.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;nice dude!!&#60;/p&#62;
&#60;p&#62;working correctly at &#60;a href=&#34;http://www.argentinoZ.com&#34; rel=&#34;nofollow&#34;&#62;http://www.argentinoZ.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards from Argentina!
&#60;/p&#62;</description>
</item>
<item>
<title>bensig on "Allow Images"</title>
<link>http://bbpress.org/plugins/topic/allow-images/page/2/#post-988</link>
<pubDate>Tue, 08 Apr 2008 19:06:31 +0000</pubDate>
<dc:creator>bensig</dc:creator>
<guid isPermaLink="false">988@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Great idea for a plug-in, but it's still not as easy to put an image in a post with bbpress as it is in other forums.&#60;/p&#62;
&#60;p&#62;As the most downloaded plug-in, shouldn't this be a feature of the forum?&#60;/p&#62;
&#60;p&#62;Isn't it the case that more administrators would prefer to have the option of attaching\linking files than those who would not want it?&#60;/p&#62;
&#60;p&#62;Speak up here to help let the dev team know that this is an important feature for a future release of bbpress:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/priority-1-imagefile-attachments&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/priority-1-imagefile-attachments&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
