<?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: 1970 issue</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Topic: 1970 issue</description>
<language>en</language>
<pubDate>Sat, 10 Jan 2009 00:14:46 +0000</pubDate>

<item>
<title>chrishajer on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12402</link>
<pubDate>Sat, 01 Dec 2007 04:20:04 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12402@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Now the plugin browser theme just needs to be fixed :)
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12399</link>
<pubDate>Fri, 30 Nov 2007 21:10:29 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">12399@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I see.&#60;br /&#62;
There are some useless code in &#60;code&#62;search.php&#60;/code&#62;, like $users and $titles. They are not used in 0.8.3. If you can't switch to an updated template, then you should diff to find out what has been changed.
&#60;/p&#62;</description>
</item>
<item>
<title>electroniques on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12398</link>
<pubDate>Fri, 30 Nov 2007 21:04:13 +0000</pubDate>
<dc:creator>electroniques</dc:creator>
<guid isPermaLink="false">12398@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey.&#60;/p&#62;
&#60;p&#62;Yes, that's it.&#60;br /&#62;
Works like a charm now!&#60;br /&#62;
And yes again, I'm using 0.8.3, but switching to a different theme is close to impossible since I have modified it so heavily to match my Wordpress-Blog.&#60;/p&#62;
&#60;p&#62;Thanks a lot!
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12397</link>
<pubDate>Fri, 30 Nov 2007 20:55:54 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">12397@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is quite old (check this &#60;a href=&#34;http://trac.bbpress.org/changeset?new=trunk%2Fbb-templates%2Fkakumei%2Fsearch.php%40659&#38;#38;old=trunk%2Fbb-templates%2Fkakumei%2Fsearch.php%40635&#34;&#62;diff&#60;/a&#62;)&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php echo date(__(&#38;#39;F j, Y, h:i A&#38;#39;), bb_get_post_time()); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;replace it with&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php bb_post_time( __(&#38;#39;F j, Y, h:i A&#38;#39;) ); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You are using 0.8.3, right? You should use an updated theme.
&#60;/p&#62;</description>
</item>
<item>
<title>electroniques on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12396</link>
<pubDate>Fri, 30 Nov 2007 20:53:38 +0000</pubDate>
<dc:creator>electroniques</dc:creator>
<guid isPermaLink="false">12396@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey.&#60;/p&#62;
&#60;p&#62;I checked the Database time and it is correct.&#60;br /&#62;
So it must be some theme/bbpress related error.&#60;br /&#62;
Here's my search.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;?php bb_get_header(); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;h3 class=&#34;bbcrumb&#34;&#38;gt;&#60;a&#62;&#34;&#38;gt;&#38;lt;?php option('name'); ?&#38;gt;&#60;/a&#62; &#38;raquo; &#38;lt;?php _e('Search')?&#38;gt;&#38;lt;/h3&#38;gt;&#60;br /&#62;
&#38;lt;?php search_form( $q ); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( !empty ( $q ) ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;&#38;lt;?php _e('Search for')?&#38;gt; &#38;#8220;&#38;lt;?php echo wp_specialchars($q); ?&#38;gt;&#38;#8221;&#38;lt;/h2&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( $users ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;&#38;lt;?php _e('Users')?&#38;gt;&#38;lt;/h2&#38;gt;&#60;/p&#62;
&#60;ul&#62;
&#38;lt;?php foreach ( $users as $user ) : ?&#38;gt;&#60;/p&#62;
&#60;li&#62;&#60;a&#62;ID); ?&#38;gt;&#34;&#38;gt;&#38;lt;?php echo get_user_name( $user-&#38;gt;ID ); ?&#38;gt;&#60;/a&#62;&#60;/li&#62;
&#60;p&#62;&#38;lt;?php endforeach; ?&#38;gt;
&#60;/ul&#62;
&#60;p&#62;&#38;lt;?php endif; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( $titles ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;&#38;lt;?php _e('Thread title matches')?&#38;gt;&#38;lt;/h2&#38;gt;&#60;/p&#62;
&#60;ol&#62;
&#38;lt;?php&#60;br /&#62;
foreach ( $titles as $topic ) :&#60;br /&#62;
$count = $topic-&#38;gt;topic_posts;&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;li&#62;&#38;lt;h4&#38;gt;&#60;a&#62;&#34;&#38;gt;&#38;lt;?php topic_title(); ?&#38;gt;&#60;/a&#62;&#38;lt;/h4&#38;gt;&#60;br /&#62;
&#38;lt;small&#38;gt;&#38;lt;?php printf(__(' %1$d replies &#38;#8212; Last reply: %2$s'), $count, get_topic_date(__('F j, Y'), $topic-&#38;gt;topic_id) ) ?&#38;gt; &#38;lt;/small&#38;gt;
&#60;/li&#62;
&#60;p&#62;&#38;lt;?php endforeach; ?&#38;gt;&#60;/p&#62;
&#60;/ol&#62;
&#60;p&#62;&#38;lt;?php endif; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( $recent ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;&#38;lt;?php _e('Recent Posts')?&#38;gt;&#38;lt;/h2&#38;gt;&#60;br /&#62;
&#38;lt;ol class=&#34;results&#34;&#38;gt;&#60;br /&#62;
&#38;lt;?php foreach ( $recent as $bb_post ) : ?&#38;gt;&#60;/p&#62;
&#60;li&#62;&#38;lt;h4&#38;gt;&#60;a&#62;&#34;&#38;gt;&#38;lt;?php topic_title($bb_post-&#38;gt;topic_id); ?&#38;gt;&#60;/a&#62;&#38;lt;/h4&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;&#38;lt;?php echo show_context($q, $bb_post-&#38;gt;post_text); ?&#38;gt;&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;&#38;lt;small&#38;gt;&#38;lt;?php _e('Posted') ?&#38;gt; &#38;lt;?php echo date(__('F j, Y, h:i A'), bb_get_post_time()); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;/p&#38;gt;
&#60;/li&#62;
&#60;p&#62;&#38;lt;?php endforeach; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php endif; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( $relevant ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;&#38;lt;?php _e('Relevant posts')?&#38;gt;&#38;lt;/h2&#38;gt;&#60;br /&#62;
&#38;lt;ol class=&#34;results&#34;&#38;gt;&#60;br /&#62;
&#38;lt;?php foreach ( $relevant as $bb_post ) : ?&#38;gt;&#60;/p&#62;
&#60;li&#62;&#38;lt;h4&#38;gt;&#60;a&#62;&#34;&#38;gt;&#38;lt;?php topic_title($bb_post-&#38;gt;topic_id); ?&#38;gt;&#60;/a&#62;&#38;lt;/h4&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;&#38;lt;?php echo show_context($q, $bb_post-&#38;gt;post_text); ?&#38;gt;&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;&#38;lt;small&#38;gt;&#38;lt;?php _e('Posted') ?&#38;gt; &#38;lt;?php echo date(__('F j, Y, h:i A'), bb_get_post_time()); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;/p&#38;gt;
&#60;/li&#62;
&#60;p&#62;&#38;lt;?php endforeach; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php endif; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( !$topics &#38;#38;&#38;#38; !$recent &#38;#38;&#38;#38; !$relevant &#38;#38;&#38;#38; !users) : ?&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;&#38;lt;?php _e('No results found.') ?&#38;gt;&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; ?&#38;gt;&#60;br /&#62;
&#60;br /&#62;
&#38;lt;p&#38;gt;&#38;lt;?php printf(__('You may also try your &#60;a href=&#34;http://google.com/search?q=site:%1$s %2$s&#34;&#62;search at Google&#60;/a&#62;'), bb_get_option('uri'), urlencode($q)) ?&#38;gt;&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;?php bb_get_footer(); ?&#38;gt;&#60;br /&#62;
&#38;lt;/code&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12394</link>
<pubDate>Fri, 30 Nov 2007 20:21:40 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">12394@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Could you post the &#60;code&#62;search.php&#60;/code&#62; in your template? and check database to ensure the time is correct in database.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12393</link>
<pubDate>Fri, 30 Nov 2007 20:02:37 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12393@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I reported a similar problem for the bbPress plugin forum about 6 weeks ago, but there is no action on the ticket.  &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/ticket/753&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/753&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;My guess is the template is calling the wrong time/timestamp function since it doesn't happen with the stock kakumei theme.
&#60;/p&#62;</description>
</item>
<item>
<title>vafaaaan on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12392</link>
<pubDate>Fri, 30 Nov 2007 19:56:08 +0000</pubDate>
<dc:creator>vafaaaan</dc:creator>
<guid isPermaLink="false">12392@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;db table bb_topics -&#38;gt; row topic_time is datetime and picks time from server ? check if server time is correct .. maybe&#60;/p&#62;
&#60;p&#62;did you add the topic manually?
&#60;/p&#62;</description>
</item>
<item>
<title>electroniques on "1970 issue"</title>
<link>http://bbpress.org/forums/topic/1970-issue#post-12391</link>
<pubDate>Fri, 30 Nov 2007 19:49:11 +0000</pubDate>
<dc:creator>electroniques</dc:creator>
<guid isPermaLink="false">12391@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey.&#60;/p&#62;
&#60;p&#62;Usually it only displays the freshness of my forum's post, but when using the search function it also shows the date the post was created.&#60;br /&#62;
Unfortunately it show the year 1970.&#60;br /&#62;
Here's the link:&#60;br /&#62;
&#60;a href=&#34;http://www.cmscentral.de/content/forum/search.php?q=Family&#34; rel=&#34;nofollow&#34;&#62;http://www.cmscentral.de/content/forum/search.php?q=Family&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Does anyone know how to fix this?&#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
