<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>Forum posts to 'bugs (temp)'</title>
		<link>http://www.silverstripe.com/bugs/</link>
		

		
		<item>
			<title>Re: Module Forum 0.1.2 needs MYSQL5</title>
			<link>http://www.silverstripe.com/bugs/show/46658?showPost=66909</link>
			<description>Hi Ingo,&lt;br /&gt;Sorry to say, i only did a 'switch-back' to old functionality.&lt;br /&gt;this is no 'patch'.&lt;br /&gt;this means, patching with this code, would lead to &lt;br /&gt;loosing the new abilitys, the new forum version has...&lt;br /&gt;&lt;br /&gt;g&lt;br /&gt;  Helmut&lt;br&gt;&lt;br&gt;Posted to: Module Forum 0.1.2 needs MYSQL5</description>
			<pubDate>Wed, 07 May 2008 19:37:41 +1200</pubDate>
			<author>Helmut Zörrer</author>
			<guid>http://www.silverstripe.com/bugs/show/46658?showPost=66909</guid>
		</item>
		
		<item>
			<title>Re: Module Forum 0.1.2 needs MYSQL5</title>
			<link>http://www.silverstripe.com/bugs/show/46658?showPost=66764</link>
			<description>hey zyko - great to hear you made this functionality mysql4 compatible - can you provide your changes as a patch? http://open.silverstripe.com/#Submittingpatches&lt;br /&gt;cheers&lt;br&gt;&lt;br&gt;Posted to: Module Forum 0.1.2 needs MYSQL5</description>
			<pubDate>Wed, 07 May 2008 10:02:54 +1200</pubDate>
			<author>Ingo Schommer</author>
			<guid>http://www.silverstripe.com/bugs/show/46658?showPost=66764</guid>
		</item>
		
		<item>
			<title>Re: Module Forum 0.1.2 needs MYSQL5</title>
			<link>http://www.silverstripe.com/bugs/show/46658?showPost=66645</link>
			<description>YEAH, to find something in Silverstripe forums&lt;br /&gt;is sometimes hard.&lt;br /&gt;Would be fine if there was only ONE result shown for a 'thread' if one post of the thread meets the query. and not any post of the thread, that meets the search criteria...&lt;br /&gt;&lt;br /&gt;BTW: if anyone is interested:&lt;br /&gt;I did a replacement of Forum.php function Topics()&lt;br /&gt;with 'the old version' of this function and things are ok for now.&lt;br /&gt;[code]&lt;br /&gt;	function Topics() {&lt;br /&gt;		if(Member::currentUser()==$this-&amp;gt;Moderator()) {&lt;br /&gt;			return DataObject::get(&quot;Post&quot;, &quot;ForumID = $this-&amp;gt;ID and ParentID = 0 and (Status = 'Moderated' or Status = 'Awaiting')&quot;);&lt;br /&gt;		}&lt;br /&gt;		return DataObject::get(&quot;Post&quot;, &quot;ForumID = $this-&amp;gt;ID and ParentID = 0 and Status = 'Moderated'&quot;);&lt;br /&gt;	}&lt;br /&gt;[/code]&lt;br /&gt;the new function&lt;br /&gt;[code]&lt;br /&gt;	function Topics() {&lt;br /&gt;		if(Member::currentUser()==$this-&amp;gt;Moderator() &amp;amp;&amp;amp; is_numeric($this-&amp;gt;ID)) {&lt;br /&gt;			$statusFilter = &quot;(`Post`.Status IN ('Moderated', 'Awaiting')&quot;;&lt;br /&gt;		} else {&lt;br /&gt;			$statusFilter = &quot;`Post`.Status = 'Moderated'&quot;;&lt;br /&gt;		}&lt;br /&gt;		&lt;br /&gt;		if(isset($_GET['start']) &amp;amp;&amp;amp; is_numeric($_GET['start'])) $limit = Convert::raw2sql($_GET['start']) . &quot;, 30&quot;;&lt;br /&gt;		else $limit = 30;&lt;br /&gt;			&lt;br /&gt;		return DataObject::get(&quot;Post&quot;, &quot;`Post`.ForumID = $this-&amp;gt;ID and `Post`.ParentID = 0 and $statusFilter&quot;, &quot;max(PostList.Created) DESC&quot;,&lt;br /&gt;			&quot;INNER JOIN `Post` AS PostList ON PostList.TopicID = `Post`.TopicID&quot;, $limit&lt;br /&gt;		);&lt;br /&gt;	}&lt;br /&gt;[/code]&lt;br /&gt;seems to be better in showing the latest reply on articles in front of the thread, but it worked without this in former versions.&lt;br /&gt;And maybe someone can do this correct for older my-sql versions in future versions...&lt;br&gt;&lt;br&gt;Posted to: Module Forum 0.1.2 needs MYSQL5</description>
			<pubDate>Wed, 07 May 2008 02:27:41 +1200</pubDate>
			<author>Helmut Zörrer</author>
			<guid>http://www.silverstripe.com/bugs/show/46658?showPost=66645</guid>
		</item>
		
		<item>
			<title>Re: Module Forum 0.1.2 needs MYSQL5</title>
			<link>http://www.silverstripe.com/bugs/show/46658?showPost=66637</link>
			<description>I think sections would be a lot easier to search as well. So hard to find information at the moment.&lt;br&gt;&lt;br&gt;Posted to: Module Forum 0.1.2 needs MYSQL5</description>
			<pubDate>Wed, 07 May 2008 02:00:58 +1200</pubDate>
			<author>Nick </author>
			<guid>http://www.silverstripe.com/bugs/show/46658?showPost=66637</guid>
		</item>
		
		<item>
			<title>Re: Module Forum 0.1.2 needs MYSQL5</title>
			<link>http://www.silverstripe.com/bugs/show/46658?showPost=49611</link>
			<description>modules don't necessarily need to have matching requirements to the core, in the end its just a missing &quot;minimum requirements&quot; note for the forum module.&lt;br /&gt;&lt;br /&gt;good point with your search for a &quot;forum&quot; keyword, this would be more efficient when limited to a specific &quot;modules&quot; forum  - although we're trying to avoid a too fragmented forum structure. what do other people think?&lt;br&gt;&lt;br&gt;Posted to: Module Forum 0.1.2 needs MYSQL5</description>
			<pubDate>Sat, 29 Mar 2008 16:27:27 +1300</pubDate>
			<author>Ingo Schommer</author>
			<guid>http://www.silverstripe.com/bugs/show/46658?showPost=49611</guid>
		</item>
		
		<item>
			<title>Module Forum 0.1.2 needs MYSQL5</title>
			<link>http://www.silverstripe.com/bugs/show/46658</link>
			<description>I did an Update from Forum 0.1.1 to the newer version.&lt;br /&gt;I get Errors on MYSQL 4.1.22&lt;br /&gt;that tell something abot 'invalid GROUP statements'.&lt;br /&gt;&lt;br /&gt;The requiremnets for Silverstripe say MYSQL 4.1&lt;br /&gt;so there should be no MYSQL5 specific code i think...&lt;br /&gt;&lt;br /&gt;I didn't look at the details much more, am a novice in silverstripe.&lt;br /&gt;maybe someone can check this?&lt;br /&gt;&lt;br /&gt;BTW: would be fine to have seperate forums to discuss about things concerning&lt;br /&gt;modules or themes.&lt;br /&gt;Try to find something with a query about 'forum', and you see what i mean&lt;br /&gt;&lt;br /&gt;*g&lt;br /&gt;  Helmut&lt;br&gt;&lt;br&gt;Posted to: Module Forum 0.1.2 needs MYSQL5</description>
			<pubDate>Fri, 21 Mar 2008 23:37:41 +1300</pubDate>
			<author>Helmut Zörrer</author>
			<guid>http://www.silverstripe.com/bugs/show/46658</guid>
		</item>
		

	</channel>
</rss>
