<?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: plugin request</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: plugin request</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 22:24:41 +0000</pubDate>

<item>
<title>cartmanffc on "plugin Request=&#62; notification options"</title>
<link>http://bbpress.org/forums/topic/plugin-request#post-18960</link>
<pubDate>Fri, 05 Sep 2008 11:54:09 +0000</pubDate>
<dc:creator>cartmanffc</dc:creator>
<guid isPermaLink="false">18960@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;this should be default option of bbPress
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Plugin Request: Forum Categories.."</title>
<link>http://bbpress.org/forums/topic/plugin-request-forum-categories#post-16902</link>
<pubDate>Wed, 25 Jun 2008 06:05:25 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">16902@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Probably at the same time as WordPress 2.6
&#60;/p&#62;</description>
</item>
<item>
<title>emmegildo on "Plugin Request: Forum Categories.."</title>
<link>http://bbpress.org/forums/topic/plugin-request-forum-categories#post-16874</link>
<pubDate>Tue, 24 Jun 2008 01:55:39 +0000</pubDate>
<dc:creator>emmegildo</dc:creator>
<guid isPermaLink="false">16874@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hey samba.. when will it be released ?
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Plugin Request: Forum Categories.."</title>
<link>http://bbpress.org/forums/topic/plugin-request-forum-categories#post-16863</link>
<pubDate>Mon, 23 Jun 2008 05:54:41 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">16863@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;1.0-beta will have forum categories built in.
&#60;/p&#62;</description>
</item>
<item>
<title>pftaylor on "Plugin Request: Forum Categories.."</title>
<link>http://bbpress.org/forums/topic/plugin-request-forum-categories#post-16788</link>
<pubDate>Tue, 17 Jun 2008 20:37:47 +0000</pubDate>
<dc:creator>pftaylor</dc:creator>
<guid isPermaLink="false">16788@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There still appears to be no answer to this problem. I would very much like to use BBPress, but it will not be possible, until categories are included. I wish I was better at php.
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "User-editable Custom Titles"</title>
<link>http://bbpress.org/forums/topic/user-editable-custom-titles#post-15839</link>
<pubDate>Mon, 28 Apr 2008 16:10:16 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">15839@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think I need a little help with this one. I'm running 0.9.0.2 now.&#60;/p&#62;
&#60;p&#62;Here's the section in functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function get_profile_info_keys() {
	return apply_filters( &#38;#39;get_profile_info_keys&#38;#39;, array(
		&#38;#39;user_email&#38;#39; =&#38;gt; array(1, __(&#38;#39;Email&#38;#39;)),
		&#38;#39;user_url&#38;#39; =&#38;gt; array(0, __(&#38;#39;Website&#38;#39;)),
		&#38;#39;from&#38;#39; =&#38;gt; array(0, __(&#38;#39;Location&#38;#39;)),
		&#38;#39;occ&#38;#39; =&#38;gt; array(0, __(&#38;#39;Occupation&#38;#39;)),
		&#38;#39;interest&#38;#39; =&#38;gt; array(0, __(&#38;#39;Interests&#38;#39;)),
	) );
}

function get_profile_admin_keys() {
	global $bbdb;
	return apply_filters( &#38;#39;get_profile_admin_keys&#38;#39;, array(
		$bbdb-&#38;gt;prefix . &#38;#39;title&#38;#39; =&#38;gt; array(0, __(&#38;#39;Custom Title&#38;#39;))
	) );
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So if I move that section up to get_profile_info_keys, it should look like this, correct?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function get_profile_info_keys() {
	global $bbdb;
	return apply_filters( &#38;#39;get_profile_info_keys&#38;#39;, array(
		&#38;#39;user_email&#38;#39; =&#38;gt; array(1, __(&#38;#39;Email&#38;#39;)),
		&#38;#39;user_url&#38;#39; =&#38;gt; array(0, __(&#38;#39;Website&#38;#39;)),
		&#38;#39;from&#38;#39; =&#38;gt; array(0, __(&#38;#39;Location&#38;#39;)),
		&#38;#39;occ&#38;#39; =&#38;gt; array(0, __(&#38;#39;Occupation&#38;#39;)),
		&#38;#39;interest&#38;#39; =&#38;gt; array(0, __(&#38;#39;Interests&#38;#39;)),
		$bbdb-&#38;gt;prefix . &#38;#39;title&#38;#39; =&#38;gt; array(0, __(&#38;#39;Custom Title&#38;#39;)),
	) );
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That pretty much removes everything from get_profile_admin_keys, so do I just take that entire section out?&#60;/p&#62;
&#60;p&#62;Thanks for the helping hand...
&#60;/p&#62;</description>
</item>
<item>
<title>philgreen on "User-editable Custom Titles"</title>
<link>http://bbpress.org/forums/topic/user-editable-custom-titles#post-15522</link>
<pubDate>Fri, 18 Apr 2008 20:43:25 +0000</pubDate>
<dc:creator>philgreen</dc:creator>
<guid isPermaLink="false">15522@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Do just like parabolart said.  You should paste the text inside the () after the array for get_profile_admin_keys and separate it from the other ones with a comma.
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "plugin request: exclude all topics from specific sub-forums on front-page only"</title>
<link>http://bbpress.org/forums/topic/plugin-request-exclude-specific-forum-topics-from-front-page-latest#post-15387</link>
<pubDate>Tue, 15 Apr 2008 04:33:54 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">15387@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for this, as usual you are the best!
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "User-editable Custom Titles"</title>
<link>http://bbpress.org/forums/topic/user-editable-custom-titles#post-15316</link>
<pubDate>Sat, 12 Apr 2008 23:17:34 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">15316@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hmm.... not sure to how to change that code without getting errors (I'm running 0.9.0.1 on this particular forum).&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function get_profile_info_keys() {
	return apply_filters(
		&#38;#39;get_profile_info_keys&#38;#39;,
		array(&#38;#39;user_email&#38;#39; =&#38;gt; array(1, __(&#38;#39;Email&#38;#39;)), &#38;#39;user_url&#38;#39; =&#38;gt; array(0, __(&#38;#39;Website&#38;#39;)), &#38;#39;from&#38;#39; =&#38;gt; array(0, __(&#38;#39;Location&#38;#39;)), &#38;#39;occ&#38;#39; =&#38;gt; array(0, __(&#38;#39;Occupation&#38;#39;)), &#38;#39;interest&#38;#39; =&#38;gt; array(0, __(&#38;#39;Interests&#38;#39;)))
	);
}

function get_profile_admin_keys() {
	global $bbdb;
	return apply_filters(
		&#38;#39;get_profile_admin_keys&#38;#39;,
		array($bbdb-&#38;gt;prefix . &#38;#39;title&#38;#39; =&#38;gt; array(0, __(&#38;#39;Custom Title&#38;#39;)))
	);
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>parabolart on "User-editable Custom Titles"</title>
<link>http://bbpress.org/forums/topic/user-editable-custom-titles#post-14884</link>
<pubDate>Tue, 01 Apr 2008 21:55:32 +0000</pubDate>
<dc:creator>parabolart</dc:creator>
<guid isPermaLink="false">14884@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;in functions.php find &#60;code&#62;function get_profile_admin_keys() {&#60;/code&#62;, and move &#60;code&#62;$bb_table_prefix . &#38;#39;title&#38;#39; =&#38;gt; array(0, __(&#38;#39;User Title&#38;#39;))&#60;/code&#62; from that function's array to &#60;code&#62;function get_profile_info_keys()&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "[Plugin Request] Twitter status in .threadauthor"</title>
<link>http://bbpress.org/forums/topic/plugin-request-twitter-status-in-threadauthor#post-14104</link>
<pubDate>Tue, 26 Feb 2008 19:07:30 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">14104@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you can find a wordpress plugin that does this, it will be very easy to convert to bbpress.
&#60;/p&#62;</description>
</item>
<item>
<title>Nightgunner5 on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-13139</link>
<pubDate>Sun, 13 Jan 2008 21:55:52 +0000</pubDate>
<dc:creator>Nightgunner5</dc:creator>
<guid isPermaLink="false">13139@http://bbpress.org/forums/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;so you guys need different access levels for different forums?&#60;/p&#62;
&#60;p&#62;I think that should be possible to do in some plugin &#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;What I want is different access levels to post new topics in the forum.
&#60;/p&#62;</description>
</item>
<item>
<title>finalwebsites on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-13138</link>
<pubDate>Sun, 13 Jan 2008 21:54:34 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">13138@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;so you guys need different access levels for different forums?&#60;/p&#62;
&#60;p&#62;I think that should be possible to do in some plugin
&#60;/p&#62;</description>
</item>
<item>
<title>inuki on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-13125</link>
<pubDate>Sun, 13 Jan 2008 13:57:48 +0000</pubDate>
<dc:creator>inuki</dc:creator>
<guid isPermaLink="false">13125@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I need the same plugin.&#60;br /&#62;
Problem of &#34;Privat forums&#34; every member can psot.&#60;br /&#62;
e.g u create a news forum you will have the porblem that normal member can post news.
&#60;/p&#62;</description>
</item>
<item>
<title>finalwebsites on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-13111</link>
<pubDate>Sat, 12 Jan 2008 13:30:55 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">13111@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I use the &#34;Privat forums&#34; plugin and it works great, only members can access the boards.&#60;/p&#62;
&#60;p&#62;Btw. I think anonymous posts are not good for a forum (spam)
&#60;/p&#62;</description>
</item>
<item>
<title>erissiva on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-13102</link>
<pubDate>Fri, 11 Jan 2008 10:54:19 +0000</pubDate>
<dc:creator>erissiva</dc:creator>
<guid isPermaLink="false">13102@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It would be really nice to have something along these lines as well. I would like to be able to change permissions on individual forums so that mods and admin can post, but others can reply (or not) but not post new topics.
&#60;/p&#62;</description>
</item>
<item>
<title>Mistainu on "[Plugin Request] Twitter status in .threadauthor"</title>
<link>http://bbpress.org/forums/topic/plugin-request-twitter-status-in-threadauthor#post-12776</link>
<pubDate>Wed, 19 Dec 2007 09:16:00 +0000</pubDate>
<dc:creator>Mistainu</dc:creator>
<guid isPermaLink="false">12776@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;can someone program a plugin to insert the user's Twitter status in the .threadauthor? perhaps below the username? just an idea if anyone'll do it.
&#60;/p&#62;</description>
</item>
<item>
<title>AphelionZ on "Combined Register + Post"</title>
<link>http://bbpress.org/forums/topic/combined-register-post#post-12755</link>
<pubDate>Tue, 18 Dec 2007 14:14:20 +0000</pubDate>
<dc:creator>AphelionZ</dc:creator>
<guid isPermaLink="false">12755@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'd like to see this functionality too!
&#60;/p&#62;</description>
</item>
<item>
<title>Nightgunner5 on "Time ban? [Plugin request]"</title>
<link>http://bbpress.org/forums/topic/time-ban-plugin-request#post-12494</link>
<pubDate>Sat, 08 Dec 2007 16:24:51 +0000</pubDate>
<dc:creator>Nightgunner5</dc:creator>
<guid isPermaLink="false">12494@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've been wanting to set up a feature on my forums where a person who can change userlevels would be able to set a user to inactive or banned for a certain number of days/hours/weeks/months.  I can't figure out how it would be created.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-12308</link>
<pubDate>Tue, 27 Nov 2007 22:04:07 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">12308@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I need something like this too. Trying to make a plugin that does this by hiding that forum from members but only when they want to create a new topic in that forum. This way they can reply, but not create a topic (cause they can't select it when creating a topic cause it is invisible for them).&#60;/p&#62;
&#60;p&#62;Still working on a few issues, but theoraticly it should work :)
&#60;/p&#62;</description>
</item>
<item>
<title>Nightgunner5 on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-12195</link>
<pubDate>Sun, 25 Nov 2007 19:29:37 +0000</pubDate>
<dc:creator>Nightgunner5</dc:creator>
<guid isPermaLink="false">12195@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;No, none of those will work unfortunately.  I only want one specific subforum to have different roles.  The change roles plugin was the closest to what I wanted, though.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-12192</link>
<pubDate>Sun, 25 Nov 2007 07:41:44 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12192@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Would any of these plugins be useful?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/16&#34;&#62;Support Forum&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/plugins/topic/12&#34;&#62;Private Forums&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.livibetter.com/it/topic/example-changes-roles-stuff&#34;&#62;Change Roles&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I think editing out the capability to post for certain member roles would do the trick (the last plugin).
&#60;/p&#62;</description>
</item>
<item>
<title>Nightgunner5 on "Plugin request: Announcements forum"</title>
<link>http://bbpress.org/forums/topic/plugin-request-announcements-forum#post-12183</link>
<pubDate>Sat, 24 Nov 2007 21:06:35 +0000</pubDate>
<dc:creator>Nightgunner5</dc:creator>
<guid isPermaLink="false">12183@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What I want is something where everyone can view topics in a specific forum, but only registered users can reply (normal) and only a specific userlevel and higher can post new topics.
&#60;/p&#62;</description>
</item>
<item>
<title>mazdakam on "plugin Request=&#62; notification options"</title>
<link>http://bbpress.org/forums/topic/plugin-request#post-10363</link>
<pubDate>Tue, 21 Aug 2007 22:56:59 +0000</pubDate>
<dc:creator>mazdakam</dc:creator>
<guid isPermaLink="false">10363@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;also never forget to put strings in __ and _e&#60;br /&#62;
for my view yu have forgotten!!&#60;br /&#62;
also never forget to putting load plug in function and po files&#60;br /&#62;
:) coffee?
&#60;/p&#62;</description>
</item>
<item>
<title>mazdakam on "plugin Request=&#62; notification options"</title>
<link>http://bbpress.org/forums/topic/plugin-request#post-10362</link>
<pubDate>Tue, 21 Aug 2007 22:53:31 +0000</pubDate>
<dc:creator>mazdakam</dc:creator>
<guid isPermaLink="false">10362@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hum i c...&#60;br /&#62;
you can see smf or vb forums they have it&#60;br /&#62;
i think you can get good ideas...&#60;/p&#62;
&#60;p&#62;also the content of email must be&#60;br /&#62;
responser&#60;br /&#62;
name of topic&#60;br /&#62;
link of topic&#60;br /&#62;
link to unsubscribe from topic&#60;br /&#62;
text of last respons
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "plugin Request=&#62; notification options"</title>
<link>http://bbpress.org/forums/topic/plugin-request#post-10351</link>
<pubDate>Tue, 21 Aug 2007 16:46:58 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">10351@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've been considering making this ability but it really worries me about the volume of email if someone subscribes to many, many topics. Spam filters, not to mention your server host can trigger bans if too much email is being sent.&#60;/p&#62;
&#60;p&#62;But I do have all the routines I need however to build such a plugin based on code from my signatures plugin and ignore member plugin. (Digests are another matter however, that's a bit of work and requires tracking of last message seen, which is not natively built into bbpress)&#60;/p&#62;
&#60;p&#62;There is just too much to create but too little time to do it though. I've got too many little projects going.
&#60;/p&#62;</description>
</item>
<item>
<title>mazdakam on "plugin Request=&#62; notification options"</title>
<link>http://bbpress.org/forums/topic/plugin-request#post-10336</link>
<pubDate>Tue, 21 Aug 2007 08:52:43 +0000</pubDate>
<dc:creator>mazdakam</dc:creator>
<guid isPermaLink="false">10336@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hi again :))&#60;/p&#62;
&#60;p&#62;al of you know that notification email is very important for tracing a post&#60;br /&#62;
i am using post - notification plug in&#60;/p&#62;
&#60;p&#62;but it need to be better:&#60;/p&#62;
&#60;p&#62; don't send any email until you visit the post from your email link&#60;br /&#62;
i got crazy this month because for every new post i will give notification email and the trafficked of my forum is high&#60;br /&#62;
many other forum systems have this feature&#60;/p&#62;
&#60;p&#62;so i recommend this:&#60;br /&#62;
 an option for users to select didgist summary or per post or until he/she visit(default!)
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Indicating new posts/topics plugin request. Coder needed!"</title>
<link>http://bbpress.org/forums/topic/indicating-new-poststopics-plugin-request-coder-needed#post-9349</link>
<pubDate>Wed, 25 Jul 2007 23:56:42 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">9349@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;In the right place in front-page.php? It has to be inside the loops that go &#60;code&#62;foreach( $sumthin AS $topic ) { ... }&#60;/code&#62;&#60;br /&#62;
I've just tried it myself and it seems to work. Comment _in_ that line about the span colour so you can test if it's working at all.
&#60;/p&#62;</description>
</item>
<item>
<title>MikeLothar on "Indicating new posts/topics plugin request. Coder needed!"</title>
<link>http://bbpress.org/forums/topic/indicating-new-poststopics-plugin-request-coder-needed#post-9346</link>
<pubDate>Wed, 25 Jul 2007 23:39:45 +0000</pubDate>
<dc:creator>MikeLothar</dc:creator>
<guid isPermaLink="false">9346@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm not sure i'm doing it right. The idea is good, but nothing seems to happen. Here's what i have:&#60;/p&#62;
&#60;p&#62;In the plugin:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function fel_indicatenew($title)
{
	global $topic, $bb_current_user;
	if ( bb_is_user_logged_in() )
	{
		$feluser = bb_get_user($bb_current_user-&#38;gt;ID);
		if( ($topic-&#38;gt;topic_time &#38;gt; $feluser-&#38;gt;last_visit) &#38;#38;&#38;#38; ( $topic-&#38;gt;topic_last_poster != $feluser-&#38;gt;ID ) )
		{
			//$title = &#38;#39;&#38;lt;span style=&#38;quot;color: #9d0a0e;&#38;quot;&#38;gt;&#38;#39; . $title . &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
			$topic-&#38;gt;new = true;
		}
	}
	return($title);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.. and in the theme's front-page.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if( $topic-&#38;gt;new ) : ?&#38;gt;
blah
&#38;lt;?php endif; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I've also tried:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if( $topic-&#38;gt;new ) { ?&#38;gt;
blah
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.. but none of these seem to do anything.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Indicating new posts/topics plugin request. Coder needed!"</title>
<link>http://bbpress.org/forums/topic/indicating-new-poststopics-plugin-request-coder-needed#post-9337</link>
<pubDate>Wed, 25 Jul 2007 21:58:24 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">9337@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What do Tom and Jerry have to do with any of this?&#60;/p&#62;
&#60;p&#62;So replace the code that adds the &#38;lt;span class=&#34;&#34;&#38;gt; to this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$topic-&#38;gt;new = true;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then when you want to find out if it's a new topic, you do this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if( $topic-&#38;gt;new ) {
//blah
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Should work. Unless I misunderstood your wishes again.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
