<?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 Topic: Bug? "No Replies" on a thread is inaccurate in Profile</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: Bug? "No Replies" on a thread is inaccurate in Profile</description>
<language>en</language>
<pubDate>Fri, 29 Aug 2008 19:48:21 +0000</pubDate>

<item>
<title>spencerp on "Bug? "No Replies" on a thread is inaccurate in Profile"</title>
<link>http://bbpress.org/forums/topic/bug-no-replies-on-a-thread-is-inaccurate-in-profile#post-2771</link>
<pubDate>Mon, 01 Jan 2007 17:44:23 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">2771@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Nice! I'll apply this then, once done eating my burger here.. ;):)  If I remember right, someone did post about that over in the WP.org mailing list(s) can't remember which one though..  Or, maybe it was the bbdev list.. I better check .. &#60;/p&#62;
&#60;p&#62;But I think Michael Adams seen it, and was going to apply a &#34;Fix&#34; after holidays.. when the next release of bbPress comes out.. (after holidays) I'm assuming.. either way.. thanks for the &#34;fix&#34;.. :) :D&#60;/p&#62;
&#60;p&#62;spencerp&#60;br /&#62;
/Here's the thread I meant to post it in lmao..
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Bug? "No Replies" on a thread is inaccurate in Profile"</title>
<link>http://bbpress.org/forums/topic/bug-no-replies-on-a-thread-is-inaccurate-in-profile#post-2764</link>
<pubDate>Mon, 01 Jan 2007 17:13:31 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">2764@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks Trent. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/ticket/516&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/516&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Bug? "No Replies" on a thread is inaccurate in Profile"</title>
<link>http://bbpress.org/forums/topic/bug-no-replies-on-a-thread-is-inaccurate-in-profile#post-2759</link>
<pubDate>Mon, 01 Jan 2007 16:53:32 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">2759@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That fixed it up all right.   I am submitting that portion to TRAC!   Thanks!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Bug? "No Replies" on a thread is inaccurate in Profile"</title>
<link>http://bbpress.org/forums/topic/bug-no-replies-on-a-thread-is-inaccurate-in-profile#post-2749</link>
<pubDate>Mon, 01 Jan 2007 05:13:57 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">2749@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Trent, I created a my-templates/profile.php and changed line 52 of that file from:&#60;/p&#62;
&#60;p&#62;&#60;code&#62; if ( strtotime(get_topic_start_time()) &#38;lt; strtotime(get_topic_time()) )&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;to this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62; if ( get_topic_start_timestamp() &#38;lt; strtotime(get_topic_time()) )&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and now it works as expected and returns the correct date for the topic_start_time.  I don't know if that's the correct way to fix it, but it works over here.&#60;/p&#62;
&#60;p&#62;I also edited a couple of places where sentences end with &#34;ago&#34; and made them consistent with a period, or not, for all of them.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Bug? "No Replies" on a thread is inaccurate in Profile"</title>
<link>http://bbpress.org/forums/topic/bug-no-replies-on-a-thread-is-inaccurate-in-profile#post-2748</link>
<pubDate>Mon, 01 Jan 2007 04:56:15 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">2748@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Trent, I am looking into bb-templates/profile.php around line 52.  It seems like this test always fails and thus prints 'No replies.'  Seems like the wrong two values are being compared or something.  Also, it seems like &#60;code&#62;strtotime(get_topic_start_time())&#60;/code&#62; returns a really weird date, in the future too, and it's changing too, every time I run the query.   That should not happen for the topic start time (it is what it is, right?)  Here are some of the time stamps I've received in the past couple minutes.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;1169441052  Sun, 21 Jan 2007 22:44:12 -0600&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;1169441231  Sun, 21 Jan 2007 22:47:11 -0600&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;1169441457  Sun, 21 Jan 2007 22:50:57 -0600&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The topic_start_time from MySQL:&#60;br /&#62;
2006-12-07 21:43:24  	&#60;/p&#62;
&#60;p&#62;The topic_time from MySQL:&#60;br /&#62;
2006-12-17 15:58:30&#60;/p&#62;
&#60;p&#62;The topic_time is accurate in the profile page (1166389110) but it fails because get_topic_start_time() is returning some date in the future...&#60;/p&#62;
&#60;p&#62;Weird.&#60;/p&#62;
&#60;p&#62;(Also, the date on my server is accurate, and my post freshness is working properly.  The only issue I have with time is that the server is GMT -0500 and my customers are GMT -0600, so the post times are off an hour, but no one minds that.)
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Bug? "No Replies" on a thread is inaccurate in Profile"</title>
<link>http://bbpress.org/forums/topic/bug-no-replies-on-a-thread-is-inaccurate-in-profile#post-2747</link>
<pubDate>Mon, 01 Jan 2007 04:31:23 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">2747@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Does it make sense that it would have the wrong information?  I am trying to understand that.&#60;/p&#62;
&#60;p&#62;Never noticed at the wordpress forums.  Weird.&#60;/p&#62;
&#60;p&#62;I just checked here and in my profile, every thread I started says &#34;No replies&#34; after it, and that's not accurate.  Seems like it's wrong?  Why show &#34;No replies&#34; when there are replies?  Why not just not show anything at all?  Better no info than inaccurate info.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Bug? "No Replies" on a thread is inaccurate in Profile"</title>
<link>http://bbpress.org/forums/topic/bug-no-replies-on-a-thread-is-inaccurate-in-profile#post-2745</link>
<pubDate>Mon, 01 Jan 2007 04:07:12 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">2745@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It has the same action even on this forum as well as wordpress.org forums.   Not sure if it is meant to be that way or not....&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Bug? "No Replies" on a thread is inaccurate in Profile"</title>
<link>http://bbpress.org/forums/topic/bug-no-replies-on-a-thread-is-inaccurate-in-profile#post-2744</link>
<pubDate>Mon, 01 Jan 2007 03:50:22 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">2744@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;When viewing a user profile &#60;code&#62;&#60;a href=&#34;http://www.example.org/forum/profile.php?id=10&#34; rel=&#34;nofollow&#34;&#62;http://www.example.org/forum/profile.php?id=10&#60;/a&#62;&#60;/code&#62; there is &#34;Recent Replies&#34; and a &#34;Thread Started&#34; section.  There is one thread started (which is accurate) says started 3 weeks ago (accurate) but it says &#34;No replies&#34; which is inaccurate.  There are 6 replies to the thread, and the thread starter was not the last one to reply (this user only started the thread.)  If you hover over the title of the thread, it says &#60;code&#62;&#60;a href=&#34;http://www.example.org/forum/topic.php?id=12&#38;#38;replies=6&#34; rel=&#34;nofollow&#34;&#62;http://www.example.org/forum/topic.php?id=12&#38;#38;replies=6&#60;/a&#62;&#60;/code&#62; which indicates to me that there are 6 threads too, which is accurate.  You can see an edited screenshot here.  I am hovering the mouse over the &#34;What's Next&#34; thread title, and you can see that status bar says &#60;code&#62;&#38;#38;replies=6&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.chrishajer.com/bike/XLF/noreplies.png&#34; rel=&#34;nofollow&#34;&#62;http://www.chrishajer.com/bike/XLF/noreplies.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Bottom line: the info under &#34;thread started&#34; is inaccurate, but the link is accurate.&#60;/p&#62;
&#60;p&#62;Any ideas?&#60;br /&#62;
Thanks.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
