<?xml version="1.0" encoding="UTF-8"?>
<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><![CDATA[MyBB Community Forums - MyBB 1.4.x Bug Reports]]></title>
		<link>https://community.mybb.com/</link>
		<description><![CDATA[MyBB Community Forums - https://community.mybb.com]]></description>
		<pubDate>Wed, 10 Jun 2026 19:12:11 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Post Bug Reports onto the Dev Site]]></title>
			<link>https://community.mybb.com/thread-55101.html</link>
			<pubDate>Thu, 20 Aug 2009 05:42:58 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=81">Dennis Tsang</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-55101.html</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">This forum is now closed for new bug reports.</span><br />
<br />
We will now be using the <a href="http://dev.mybboard.net" target="_blank" rel="noopener" class="mycode_url">Dev Site</a> for issue tracking, as it integrates better with our version control system.<br />
<br />
All new bug reports for the stable 1.4.x series should be posted in the <a href="http://dev.mybboard.net/projects/mybb/issues" target="_blank" rel="noopener" class="mycode_url">MyBB project</a> (you will need to <a href="http://dev.mybboard.net/account/register" target="_blank" rel="noopener" class="mycode_url">register</a> if you don't have an account on the dev site -- logins are not integrated with the community forums).<br />
<br />
The rest of the open bug reports here will soon be transferred over to the Dev Site by our team, and we will subsequently archive this forum.<br />
<br />
Thanks,<br />
The MyBB Group]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">This forum is now closed for new bug reports.</span><br />
<br />
We will now be using the <a href="http://dev.mybboard.net" target="_blank" rel="noopener" class="mycode_url">Dev Site</a> for issue tracking, as it integrates better with our version control system.<br />
<br />
All new bug reports for the stable 1.4.x series should be posted in the <a href="http://dev.mybboard.net/projects/mybb/issues" target="_blank" rel="noopener" class="mycode_url">MyBB project</a> (you will need to <a href="http://dev.mybboard.net/account/register" target="_blank" rel="noopener" class="mycode_url">register</a> if you don't have an account on the dev site -- logins are not integrated with the community forums).<br />
<br />
The rest of the open bug reports here will soon be transferred over to the Dev Site by our team, and we will subsequently archive this forum.<br />
<br />
Thanks,<br />
The MyBB Group]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Custom Profile Fields using Check Boxes option forgets settings]]></title>
			<link>https://community.mybb.com/thread-55022.html</link>
			<pubDate>Tue, 18 Aug 2009 14:01:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=21455">markg</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-55022.html</guid>
			<description><![CDATA[If i create a custom profile field with several entries using the field type "Check Boxes", when i go into the user/edit profile, any selections made when registering are missing.<br />
<br />
custom profile fields with any of the other options seem to work fine.  in other words it remember selections with any field type EXCEPT "Check Boxes"]]></description>
			<content:encoded><![CDATA[If i create a custom profile field with several entries using the field type "Check Boxes", when i go into the user/edit profile, any selections made when registering are missing.<br />
<br />
custom profile fields with any of the other options seem to work fine.  in other words it remember selections with any field type EXCEPT "Check Boxes"]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[multiple forums memcache bug]]></title>
			<link>https://community.mybb.com/thread-54875.html</link>
			<pubDate>Sat, 15 Aug 2009 18:55:52 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=22110">someguy</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-54875.html</guid>
			<description><![CDATA[I'll post this as a bug if you are using memcache and put two forums to the same memcache instance.  Why you would do this?  About the same reason why you might want to use one database for multiple cms in a domain.<br />
<br />
If you have two forums in the same domain or even in different domains pointing to the same memcache server, they will access the same objects.  This will affect you when setting up your forum and getting the forum data from the first forum and probably vice versa.<br />
<br />
To replicate:  Simply setup one forum in /forum1 set to use memcache.  Go to "forums and posts" admin area and change categories and add two misc forums.  On second forum set up in /forum2 to use memcache (same as first).  If you try to access "forums and posts"  you will see the listing of forum1.<br />
<br />
Solution: allow a global key setting to separate the cache like the cookie setting(or just use that setting to prefix the objects).<br />
<br />
Please document this in the config file for the next release.  I am just testing mybb so I don't know what the existing behavior extends to beyond what i noticed.]]></description>
			<content:encoded><![CDATA[I'll post this as a bug if you are using memcache and put two forums to the same memcache instance.  Why you would do this?  About the same reason why you might want to use one database for multiple cms in a domain.<br />
<br />
If you have two forums in the same domain or even in different domains pointing to the same memcache server, they will access the same objects.  This will affect you when setting up your forum and getting the forum data from the first forum and probably vice versa.<br />
<br />
To replicate:  Simply setup one forum in /forum1 set to use memcache.  Go to "forums and posts" admin area and change categories and add two misc forums.  On second forum set up in /forum2 to use memcache (same as first).  If you try to access "forums and posts"  you will see the listing of forum1.<br />
<br />
Solution: allow a global key setting to separate the cache like the cookie setting(or just use that setting to prefix the objects).<br />
<br />
Please document this in the config file for the next release.  I am just testing mybb so I don't know what the existing behavior extends to beyond what i noticed.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Invalid HTML in polls]]></title>
			<link>https://community.mybb.com/thread-54759.html</link>
			<pubDate>Thu, 13 Aug 2009 18:06:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=895">Michael S.</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-54759.html</guid>
			<description><![CDATA[MyBB always uses id="option" for each radio button which is not valid as you can only use one id per page.<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>&lt;tr&gt;<br />
&lt;td class="trow1" width="1%"&gt;&lt;input type="radio" class="radio" name="option" <span style="color: #FF0000;" class="mycode_color">id="option"</span> value="1" /&gt;&lt;/td&gt;<br />
&lt;td class="trow1" colspan="3"&gt;Ja, finde ich besser.&lt;/td&gt;<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
&lt;td class="trow1" width="1%"&gt;&lt;input type="radio" class="radio" name="option" <span style="color: #FF0000;" class="mycode_color">id="option"</span> value="2" /&gt;&lt;/td&gt;<br />
&lt;td class="trow1" colspan="3"&gt;Nein, Donnerstag soll bleiben.&lt;/td&gt;<br />
&lt;/tr&gt;</blockquote>
]]></description>
			<content:encoded><![CDATA[MyBB always uses id="option" for each radio button which is not valid as you can only use one id per page.<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>&lt;tr&gt;<br />
&lt;td class="trow1" width="1%"&gt;&lt;input type="radio" class="radio" name="option" <span style="color: #FF0000;" class="mycode_color">id="option"</span> value="1" /&gt;&lt;/td&gt;<br />
&lt;td class="trow1" colspan="3"&gt;Ja, finde ich besser.&lt;/td&gt;<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
&lt;td class="trow1" width="1%"&gt;&lt;input type="radio" class="radio" name="option" <span style="color: #FF0000;" class="mycode_color">id="option"</span> value="2" /&gt;&lt;/td&gt;<br />
&lt;td class="trow1" colspan="3"&gt;Nein, Donnerstag soll bleiben.&lt;/td&gt;<br />
&lt;/tr&gt;</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Javascript Errors.]]></title>
			<link>https://community.mybb.com/thread-54481.html</link>
			<pubDate>Sun, 09 Aug 2009 15:08:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=21472">webstar</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-54481.html</guid>
			<description><![CDATA[MyBB Version 1.4.8<br />
<br />
I found some java scripting errors:<br />
Webpage error details<br />
---<br />
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)<br />
Timestamp: Sun, 9 Aug 2009 09:34:19 UTC<br />
<br />
<br />
Message: Object doesn't support this property or method<br />
Line: 51<br />
Char: 6<br />
Code: 0<br />
URI: <a href="http://localhost/iwaha.com4/jscripts/inline_moderation.js?ver=1400" target="_blank" rel="noopener" class="mycode_url">http://localhost/iwaha.com4/jscripts/inl...s?ver=1400</a><br />
<br />
Occur each time I log as admin and select a topic and select to do something from Inline Thread Moderation select menu, after deleting a thread this occur.<br />
<br />
<hr class="mycode_hr" />
Webpage error details<br />
<br />
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)<br />
Timestamp: Sun, 9 Aug 2009 14:52:41 UTC<br />
<br />
<br />
Message: Invalid argument.<br />
Line: 692<br />
Char: 26<br />
Code: 0<br />
URI: <a href="http://localhost/iwaha.com4/jscripts/editor.js?ver=1400" target="_blank" rel="noopener" class="mycode_url">http://localhost/iwaha.com4/jscripts/editor.js?ver=1400</a><br />
<br />
Occur each time when I write a topic and click on topic title and then click in the editor text area. <br />
<br />
And same thing in this forum <img src="https://community.mybb.com/images/smilies/sad.gif" alt="Sad" title="Sad" class="smilie smilie_9" /> ???]]></description>
			<content:encoded><![CDATA[MyBB Version 1.4.8<br />
<br />
I found some java scripting errors:<br />
Webpage error details<br />
---<br />
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)<br />
Timestamp: Sun, 9 Aug 2009 09:34:19 UTC<br />
<br />
<br />
Message: Object doesn't support this property or method<br />
Line: 51<br />
Char: 6<br />
Code: 0<br />
URI: <a href="http://localhost/iwaha.com4/jscripts/inline_moderation.js?ver=1400" target="_blank" rel="noopener" class="mycode_url">http://localhost/iwaha.com4/jscripts/inl...s?ver=1400</a><br />
<br />
Occur each time I log as admin and select a topic and select to do something from Inline Thread Moderation select menu, after deleting a thread this occur.<br />
<br />
<hr class="mycode_hr" />
Webpage error details<br />
<br />
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)<br />
Timestamp: Sun, 9 Aug 2009 14:52:41 UTC<br />
<br />
<br />
Message: Invalid argument.<br />
Line: 692<br />
Char: 26<br />
Code: 0<br />
URI: <a href="http://localhost/iwaha.com4/jscripts/editor.js?ver=1400" target="_blank" rel="noopener" class="mycode_url">http://localhost/iwaha.com4/jscripts/editor.js?ver=1400</a><br />
<br />
Occur each time when I write a topic and click on topic title and then click in the editor text area. <br />
<br />
And same thing in this forum <img src="https://community.mybb.com/images/smilies/sad.gif" alt="Sad" title="Sad" class="smilie smilie_9" /> ???]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Inline Thread Deletion and Reported Posts]]></title>
			<link>https://community.mybb.com/thread-54323.html</link>
			<pubDate>Thu, 06 Aug 2009 23:43:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=2877">User 2877</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-54323.html</guid>
			<description><![CDATA[If you delete multiple posts using "Inline Post Moderation" then any reported posts are not marked as reportstatus 0.  <br />
<br />
If you delete a single post using "Inline Post Moderation" then the report is properly marked as reportstatus 0.<br />
<br />
<br />
To replicate:<br />
<br />
1. Find a thread with more than 2 posts.<br />
2. Report post #2.<br />
3. Using "Inline Post Moderation" delete posts #2 and #3.<br />
4. View reported posts and see the deleted post still there with no info<br />
<br />
To View Normal behavior:<br />
1. Find a thread with more than 2 posts.<br />
2. Report post #2.<br />
3. Using "Inline Post Moderation" delete post #2<br />
4. View reported posts and see it's marked<br />
<br />
Problem:<br />
moderation.php<br />
<pre class="block-code line-numbers language-none"><code class="language-none">	case &quot;do_multideleteposts&quot;:

		// Verify incoming POST request
		verify_post_check($mybb-&gt;input['my_post_key']);
		
		$postlist = explode(&quot;|&quot;, $mybb-&gt;input['posts']);
		if(!is_moderator_by_pids($postlist, &quot;candeleteposts&quot;))
		{
			error_no_permission();
		}
		$postlist = array_map('intval', $postlist);
		$pids = implode(',', $postlist);
		
		$tids = array();
		if($pids)
		{
			$query = $db-&gt;simple_select(&quot;threads&quot;, &quot;tid&quot;, &quot;firstpost IN({$pids})&quot;);
			while($tid = $db-&gt;fetch_field($query, &quot;tid&quot;))
			{
				$tids[] = $tid;
			}
		}
		
		$deletecount = 0;
		foreach($postlist as $pid)
		{
			$pid = intval($pid);
			$moderation-&gt;delete_post($pid);
			$plist[] = $pid;
			$deletecount++;
		}
		
		// If we have multiple threads, we must be coming from the search
		if(!empty($tids))
		{
			foreach($tids as $tid)
			{
				$moderation-&gt;delete_thread($tid);
				mark_reports($tid, &quot;thread&quot;);
				$url = get_forum_link($fid);
			}
		}
		// Otherwise we're just deleting from showthread.php
		else
		{
			$query = $db-&gt;simple_select(&quot;posts&quot;, &quot;*&quot;, &quot;tid='$tid'&quot;);
			$numposts = $db-&gt;num_rows($query);
			if(!$numposts)
			{
				$moderation-&gt;delete_thread($tid);
				mark_reports($tid, &quot;thread&quot;);
				$url = get_forum_link($fid);
			}
			else
			{
				mark_reports($plist, &quot;posts&quot;);
				$url = get_thread_link($thread['tid']);
			}
		}
		
		$lang-&gt;deleted_selective_posts = $lang-&gt;sprintf($lang-&gt;deleted_selective_posts, $deletecount);
		log_moderator_action($modlogdata, $lang-&gt;deleted_selective_posts);
		moderation_redirect($url, $lang-&gt;redirect_postsdeleted);
		break;
</code></pre><br />
Seems a logic problem. Whatever the solution you choose there is a small bug here.]]></description>
			<content:encoded><![CDATA[If you delete multiple posts using "Inline Post Moderation" then any reported posts are not marked as reportstatus 0.  <br />
<br />
If you delete a single post using "Inline Post Moderation" then the report is properly marked as reportstatus 0.<br />
<br />
<br />
To replicate:<br />
<br />
1. Find a thread with more than 2 posts.<br />
2. Report post #2.<br />
3. Using "Inline Post Moderation" delete posts #2 and #3.<br />
4. View reported posts and see the deleted post still there with no info<br />
<br />
To View Normal behavior:<br />
1. Find a thread with more than 2 posts.<br />
2. Report post #2.<br />
3. Using "Inline Post Moderation" delete post #2<br />
4. View reported posts and see it's marked<br />
<br />
Problem:<br />
moderation.php<br />
<pre class="block-code line-numbers language-none"><code class="language-none">	case &quot;do_multideleteposts&quot;:

		// Verify incoming POST request
		verify_post_check($mybb-&gt;input['my_post_key']);
		
		$postlist = explode(&quot;|&quot;, $mybb-&gt;input['posts']);
		if(!is_moderator_by_pids($postlist, &quot;candeleteposts&quot;))
		{
			error_no_permission();
		}
		$postlist = array_map('intval', $postlist);
		$pids = implode(',', $postlist);
		
		$tids = array();
		if($pids)
		{
			$query = $db-&gt;simple_select(&quot;threads&quot;, &quot;tid&quot;, &quot;firstpost IN({$pids})&quot;);
			while($tid = $db-&gt;fetch_field($query, &quot;tid&quot;))
			{
				$tids[] = $tid;
			}
		}
		
		$deletecount = 0;
		foreach($postlist as $pid)
		{
			$pid = intval($pid);
			$moderation-&gt;delete_post($pid);
			$plist[] = $pid;
			$deletecount++;
		}
		
		// If we have multiple threads, we must be coming from the search
		if(!empty($tids))
		{
			foreach($tids as $tid)
			{
				$moderation-&gt;delete_thread($tid);
				mark_reports($tid, &quot;thread&quot;);
				$url = get_forum_link($fid);
			}
		}
		// Otherwise we're just deleting from showthread.php
		else
		{
			$query = $db-&gt;simple_select(&quot;posts&quot;, &quot;*&quot;, &quot;tid='$tid'&quot;);
			$numposts = $db-&gt;num_rows($query);
			if(!$numposts)
			{
				$moderation-&gt;delete_thread($tid);
				mark_reports($tid, &quot;thread&quot;);
				$url = get_forum_link($fid);
			}
			else
			{
				mark_reports($plist, &quot;posts&quot;);
				$url = get_thread_link($thread['tid']);
			}
		}
		
		$lang-&gt;deleted_selective_posts = $lang-&gt;sprintf($lang-&gt;deleted_selective_posts, $deletecount);
		log_moderator_action($modlogdata, $lang-&gt;deleted_selective_posts);
		moderation_redirect($url, $lang-&gt;redirect_postsdeleted);
		break;
</code></pre><br />
Seems a logic problem. Whatever the solution you choose there is a small bug here.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Naming an admin with special characters during installation doesn't "work"]]></title>
			<link>https://community.mybb.com/thread-54230.html</link>
			<pubDate>Wed, 05 Aug 2009 15:03:35 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=16693">straat33</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-54230.html</guid>
			<description><![CDATA[I was setting up my new private forum for private use, and during the installation script it asked me for my admin account. I typed in "Fábio Maia" (my name). All working and stuff, but when the installation was complete and I acessed my forum my nickname was "F" ONLY. I tried to login with "Fábio Maia" and the respective password but it didn't work, now that I remember I could have tried to login with "F" and its password. Didn't really remember, so..<br />
<br />
But then "eh, screw it. I'll just delete everything and install it again". So yeah I didn't make any specific tests. I could have tried to edit my admin account and tried to rename it to "Fábio Maia" again (but as I didn't remember to login as F, I couldn't login to the ACP as well). <br />
<br />
I'm on a free-host running Windows and VistaPanel as the control panel, as I'm not going to spend money on a private forum just for a few couple of users. I didn't try this anymore, I have already a new board setup with no special chars. or spaces between words on my nickname. AND, in my new board I created a new user (not an admin) named "Fábio Maia" just to see if it was a global problem. It's not, seems like it just doesn't accept special chars. or spaces between words in the admin account during installation.<br />
<br />
Any thoughts on this? :|<br />
<br />
<span style="font-size: xx-small;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">EDIT:</span> Also, my board name was 8ºD and it showed up as 8D, not 8ºD. So I guess it's not just nicknames..<br />
And still regarding the board name, I now also edited my forum name from 8D (which I set in the new installation, so the fact it's 8D doesn't mean it was a problem. I wrote 8D because I knew it wouldn't work) to 8ºD and it did make effect. I could edit the board name and got it working.<br />
</span>]]></description>
			<content:encoded><![CDATA[I was setting up my new private forum for private use, and during the installation script it asked me for my admin account. I typed in "Fábio Maia" (my name). All working and stuff, but when the installation was complete and I acessed my forum my nickname was "F" ONLY. I tried to login with "Fábio Maia" and the respective password but it didn't work, now that I remember I could have tried to login with "F" and its password. Didn't really remember, so..<br />
<br />
But then "eh, screw it. I'll just delete everything and install it again". So yeah I didn't make any specific tests. I could have tried to edit my admin account and tried to rename it to "Fábio Maia" again (but as I didn't remember to login as F, I couldn't login to the ACP as well). <br />
<br />
I'm on a free-host running Windows and VistaPanel as the control panel, as I'm not going to spend money on a private forum just for a few couple of users. I didn't try this anymore, I have already a new board setup with no special chars. or spaces between words on my nickname. AND, in my new board I created a new user (not an admin) named "Fábio Maia" just to see if it was a global problem. It's not, seems like it just doesn't accept special chars. or spaces between words in the admin account during installation.<br />
<br />
Any thoughts on this? :|<br />
<br />
<span style="font-size: xx-small;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">EDIT:</span> Also, my board name was 8ºD and it showed up as 8D, not 8ºD. So I guess it's not just nicknames..<br />
And still regarding the board name, I now also edited my forum name from 8D (which I set in the new installation, so the fact it's 8D doesn't mean it was a problem. I wrote 8D because I knew it wouldn't work) to 8ºD and it did make effect. I could edit the board name and got it working.<br />
</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[thread views is stuck if php shutdown function not enabled.]]></title>
			<link>https://community.mybb.com/thread-54017.html</link>
			<pubDate>Sun, 02 Aug 2009 00:41:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=6313">pepotiger</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-54017.html</guid>
			<description><![CDATA[Hello everyone, I was very busy and didn't visit mybb community since long time, so please forgive me if this is a duplicated report or something similar (take any required action).<br />
in showthread.php the update thread views doesn't check if the shutdown function is enabled or not, it just uses it, as a result if this function doesn't work, the thread views do not updated.<br />
<br />
to be more specific<br />
the following code from showthread.php<br />
<pre class="block-code line-numbers language-none"><code class="language-php">if($mybb-&gt;settings['delayedthreadviews'] == 1)
	{
		$db-&gt;shutdown_query(&quot;INSERT INTO &quot;.TABLE_PREFIX.&quot;threadviews (tid) VALUES('{$tid}')&quot;);
	}
	else
	{
		$db-&gt;shutdown_query(&quot;UPDATE &quot;.TABLE_PREFIX.&quot;threads SET views=views+1 WHERE tid='{$tid}'&quot;);
	}
	++$thread['views'];</code></pre><br />
as I see, it should be something like<br />
<pre class="block-code line-numbers language-none"><code class="language-php">if($mybb-&gt;settings['useshutdownfunc'] ==1)
	{	
		if($mybb-&gt;settings['delayedthreadviews'] == 1)
		{
			$db-&gt;shutdown_query(&quot;INSERT INTO &quot;.TABLE_PREFIX.&quot;threadviews (tid) VALUES('{$tid}')&quot;);
		}
		else
		{
			$db-&gt;shutdown_query(&quot;UPDATE &quot;.TABLE_PREFIX.&quot;threads SET views=views+1 WHERE tid='{$tid}'&quot;);
		}
	}
	else
	{
	if($mybb-&gt;settings['delayedthreadviews'] == 1)
		{
			$db-&gt;query(&quot;INSERT INTO &quot;.TABLE_PREFIX.&quot;threadviews (tid) VALUES('{$tid}')&quot;);
		}
		else
		{
			$db-&gt;query(&quot;UPDATE &quot;.TABLE_PREFIX.&quot;threads SET views=views+1 WHERE tid='{$tid}'&quot;);
		}
	}
	++$thread['views'];</code></pre>]]></description>
			<content:encoded><![CDATA[Hello everyone, I was very busy and didn't visit mybb community since long time, so please forgive me if this is a duplicated report or something similar (take any required action).<br />
in showthread.php the update thread views doesn't check if the shutdown function is enabled or not, it just uses it, as a result if this function doesn't work, the thread views do not updated.<br />
<br />
to be more specific<br />
the following code from showthread.php<br />
<pre class="block-code line-numbers language-none"><code class="language-php">if($mybb-&gt;settings['delayedthreadviews'] == 1)
	{
		$db-&gt;shutdown_query(&quot;INSERT INTO &quot;.TABLE_PREFIX.&quot;threadviews (tid) VALUES('{$tid}')&quot;);
	}
	else
	{
		$db-&gt;shutdown_query(&quot;UPDATE &quot;.TABLE_PREFIX.&quot;threads SET views=views+1 WHERE tid='{$tid}'&quot;);
	}
	++$thread['views'];</code></pre><br />
as I see, it should be something like<br />
<pre class="block-code line-numbers language-none"><code class="language-php">if($mybb-&gt;settings['useshutdownfunc'] ==1)
	{	
		if($mybb-&gt;settings['delayedthreadviews'] == 1)
		{
			$db-&gt;shutdown_query(&quot;INSERT INTO &quot;.TABLE_PREFIX.&quot;threadviews (tid) VALUES('{$tid}')&quot;);
		}
		else
		{
			$db-&gt;shutdown_query(&quot;UPDATE &quot;.TABLE_PREFIX.&quot;threads SET views=views+1 WHERE tid='{$tid}'&quot;);
		}
	}
	else
	{
	if($mybb-&gt;settings['delayedthreadviews'] == 1)
		{
			$db-&gt;query(&quot;INSERT INTO &quot;.TABLE_PREFIX.&quot;threadviews (tid) VALUES('{$tid}')&quot;);
		}
		else
		{
			$db-&gt;query(&quot;UPDATE &quot;.TABLE_PREFIX.&quot;threads SET views=views+1 WHERE tid='{$tid}'&quot;);
		}
	}
	++$thread['views'];</code></pre>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Weird bug with ignore names [R]]]></title>
			<link>https://community.mybb.com/thread-53549.html</link>
			<pubDate>Fri, 24 Jul 2009 21:52:56 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=10902">brad-t</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-53549.html</guid>
			<description><![CDATA[LOL, this is a bit funny to spot ...<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://community.mybb.com/images/attachtypes/image.gif" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=14856" target="_blank" title="">Picture-1.png</a> (Size: 6.22 KB / Downloads: 645)
<!-- end: postbit_attachments_attachment --><br />
<br />
When opened, it's definitely HarryWX's post.<br />
<br />
Unfortunately I can't offer any "recreation" steps because I don't have any idea how or why it's happening at all.]]></description>
			<content:encoded><![CDATA[LOL, this is a bit funny to spot ...<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://community.mybb.com/images/attachtypes/image.gif" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=14856" target="_blank" title="">Picture-1.png</a> (Size: 6.22 KB / Downloads: 645)
<!-- end: postbit_attachments_attachment --><br />
<br />
When opened, it's definitely HarryWX's post.<br />
<br />
Unfortunately I can't offer any "recreation" steps because I don't have any idea how or why it's happening at all.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Profile Editing [R]]]></title>
			<link>https://community.mybb.com/thread-53491.html</link>
			<pubDate>Thu, 23 Jul 2009 22:02:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=21673">theone759</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-53491.html</guid>
			<description><![CDATA[When I go to edit my profile (Sex, Location etc...), once I put what  want, I click on Update Profile, and I get this error.<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Please correct the following errors before continuing:<br />
<br />
    * The birthday you entered is invalid. Please enter a valid birthday or leave the field empty.</blockquote>
<br />
The field is empty.]]></description>
			<content:encoded><![CDATA[When I go to edit my profile (Sex, Location etc...), once I put what  want, I click on Update Profile, and I get this error.<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Please correct the following errors before continuing:<br />
<br />
    * The birthday you entered is invalid. Please enter a valid birthday or leave the field empty.</blockquote>
<br />
The field is empty.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Inline Moderation - do_multideleteposts]]></title>
			<link>https://community.mybb.com/thread-53468.html</link>
			<pubDate>Thu, 23 Jul 2009 15:52:00 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=8582">Diogo Parrinha</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-53468.html</guid>
			<description><![CDATA[At the top of moderation.php:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$tid = intval($mybb-&gt;input['tid']);
$pid = intval($mybb-&gt;input['pid']);
$fid = intval($mybb-&gt;input['fid']);

if($pid)
{
	$post = get_post($pid);
	$tid = $post['tid'];
	if(!$post['pid'])
	{
		error($lang-&gt;error_invalidpost);
	}
}
</code></pre>Now, search for:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">case &quot;do_multideleteposts&quot;:
</code></pre>Scroll down and you'll find this:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">		if($pids)
		{
			$query = $db-&gt;simple_select(&quot;threads&quot;, &quot;tid&quot;, &quot;firstpost IN({$pids})&quot;);
			while($tid = $db-&gt;fetch_field($query, &quot;tid&quot;))
			{
				$tids[] = $tid;
			}
		}
</code></pre><br />
Here:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">while($tid = $db-&gt;fetch_field($query, &quot;tid&quot;))
</code></pre>&#36;tid will override the existing &#36;tid and depending on the circunstances, it might be null / 0 / whatever you want to call it.<br />
<br />
Now, scroll down a little bit more and you'll find:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">			$query = $db-&gt;simple_select(&quot;posts&quot;, &quot;*&quot;, &quot;tid='$tid'&quot;);
			$numposts = $db-&gt;num_rows($query);
			if(!$numposts)
			{
				$moderation-&gt;delete_thread($tid);
				mark_reports($tid, &quot;thread&quot;);
				$url = get_forum_link($fid);
			}
			else
			{
				mark_reports($plist, &quot;posts&quot;);
				$url = get_thread_link($thread['tid']);
			}
</code></pre>Obviously, this will not work:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$query = $db-&gt;simple_select(&quot;posts&quot;, &quot;*&quot;, &quot;tid='$tid'&quot;);
</code></pre>So this is what's executed always:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">			if(!$numposts)
			{
				$moderation-&gt;delete_thread($tid);
				mark_reports($tid, &quot;thread&quot;);
				$url = get_forum_link($fid);
			}
</code></pre>(or at least most of the times, like I said, it depends if one of posts we're trying to delete is the first post or not but if it's not, it will still run that code)<br />
<br />
By simply changing this:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">			while($tid = $db-&gt;fetch_field($query, &quot;tid&quot;))
			{
				$tids[] = $tid;
			}
</code></pre>to:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">			while($threadid = $db-&gt;fetch_field($query, &quot;tid&quot;))
			{
				$tids[] = $threadid;
			}
</code></pre><br />
The bug is fixed. I've searched the duplicate, fixed and the forum I am posting it and couldn't find this report so I decided to post this.]]></description>
			<content:encoded><![CDATA[At the top of moderation.php:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$tid = intval($mybb-&gt;input['tid']);
$pid = intval($mybb-&gt;input['pid']);
$fid = intval($mybb-&gt;input['fid']);

if($pid)
{
	$post = get_post($pid);
	$tid = $post['tid'];
	if(!$post['pid'])
	{
		error($lang-&gt;error_invalidpost);
	}
}
</code></pre>Now, search for:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">case &quot;do_multideleteposts&quot;:
</code></pre>Scroll down and you'll find this:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">		if($pids)
		{
			$query = $db-&gt;simple_select(&quot;threads&quot;, &quot;tid&quot;, &quot;firstpost IN({$pids})&quot;);
			while($tid = $db-&gt;fetch_field($query, &quot;tid&quot;))
			{
				$tids[] = $tid;
			}
		}
</code></pre><br />
Here:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">while($tid = $db-&gt;fetch_field($query, &quot;tid&quot;))
</code></pre>&#36;tid will override the existing &#36;tid and depending on the circunstances, it might be null / 0 / whatever you want to call it.<br />
<br />
Now, scroll down a little bit more and you'll find:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">			$query = $db-&gt;simple_select(&quot;posts&quot;, &quot;*&quot;, &quot;tid='$tid'&quot;);
			$numposts = $db-&gt;num_rows($query);
			if(!$numposts)
			{
				$moderation-&gt;delete_thread($tid);
				mark_reports($tid, &quot;thread&quot;);
				$url = get_forum_link($fid);
			}
			else
			{
				mark_reports($plist, &quot;posts&quot;);
				$url = get_thread_link($thread['tid']);
			}
</code></pre>Obviously, this will not work:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$query = $db-&gt;simple_select(&quot;posts&quot;, &quot;*&quot;, &quot;tid='$tid'&quot;);
</code></pre>So this is what's executed always:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">			if(!$numposts)
			{
				$moderation-&gt;delete_thread($tid);
				mark_reports($tid, &quot;thread&quot;);
				$url = get_forum_link($fid);
			}
</code></pre>(or at least most of the times, like I said, it depends if one of posts we're trying to delete is the first post or not but if it's not, it will still run that code)<br />
<br />
By simply changing this:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">			while($tid = $db-&gt;fetch_field($query, &quot;tid&quot;))
			{
				$tids[] = $tid;
			}
</code></pre>to:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">			while($threadid = $db-&gt;fetch_field($query, &quot;tid&quot;))
			{
				$tids[] = $threadid;
			}
</code></pre><br />
The bug is fixed. I've searched the duplicate, fixed and the forum I am posting it and couldn't find this report so I decided to post this.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Preview mass mail [R]]]></title>
			<link>https://community.mybb.com/thread-53263.html</link>
			<pubDate>Mon, 20 Jul 2009 05:58:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=14229">SaeedGh</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-53263.html</guid>
			<description><![CDATA[Hi,<br />
<br />
It seems that preview of HTML based mass mails do not work when "Message Format" is "HTML Only".<br />
<br />
Thanks.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
It seems that preview of HTML based mass mails do not work when "Message Format" is "HTML Only".<br />
<br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Postgresql authentication bug]]></title>
			<link>https://community.mybb.com/thread-53256.html</link>
			<pubDate>Mon, 20 Jul 2009 03:32:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=21643">Glenn Maynard</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-53256.html</guid>
			<description><![CDATA[I told MyBB to connect to localhost as user "mybb", and it failed.  I tracked it down to the following:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">if($single_connection['hostname'] != &quot;localhost&quot;)
{
	$this-&gt;connect_string .= &quot; host={$single_connection['hostname']}&quot;;
}
</code></pre><br />
This is incorrect.  Connecting with host=localhost is not the same as connecting without specifying a host.  Using no hostname means it'll use a Unix-domain socket connection instead of a TCP connection, and I need it to use TCP.<br />
<br />
The default Postgresql configuration (at least in Ubuntu) does not allow password-based authentication over a Unix socket.  I'm telling mybb to authenticate as something other than my own username.  To do that, it needs to connect over TCP and use the password I've given.<br />
<br />
Changing it to this fixed it for me:<br />
<pre class="block-code line-numbers language-none"><code class="language-none">if($single_connection['hostname'] != &quot;&quot;)
{
	$this-&gt;connect_string .= &quot; host={$single_connection['hostname']}&quot;;
}
</code></pre><br />
To have the same default behavior, the default field in the setup form should also be changed from localhost to empty.<br />
<br />
By the way, I'd also recommend only adding the user= field if it's not blank.  That way, you can just leave it blank and it'll connect as the current user, which is more often than not what's wanted.]]></description>
			<content:encoded><![CDATA[I told MyBB to connect to localhost as user "mybb", and it failed.  I tracked it down to the following:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">if($single_connection['hostname'] != &quot;localhost&quot;)
{
	$this-&gt;connect_string .= &quot; host={$single_connection['hostname']}&quot;;
}
</code></pre><br />
This is incorrect.  Connecting with host=localhost is not the same as connecting without specifying a host.  Using no hostname means it'll use a Unix-domain socket connection instead of a TCP connection, and I need it to use TCP.<br />
<br />
The default Postgresql configuration (at least in Ubuntu) does not allow password-based authentication over a Unix socket.  I'm telling mybb to authenticate as something other than my own username.  To do that, it needs to connect over TCP and use the password I've given.<br />
<br />
Changing it to this fixed it for me:<br />
<pre class="block-code line-numbers language-none"><code class="language-none">if($single_connection['hostname'] != &quot;&quot;)
{
	$this-&gt;connect_string .= &quot; host={$single_connection['hostname']}&quot;;
}
</code></pre><br />
To have the same default behavior, the default field in the setup form should also be changed from localhost to empty.<br />
<br />
By the way, I'd also recommend only adding the user= field if it's not blank.  That way, you can just leave it blank and it'll connect as the current user, which is more often than not what's wanted.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MyCodes in sigs [R]]]></title>
			<link>https://community.mybb.com/thread-53213.html</link>
			<pubDate>Sun, 19 Jul 2009 14:05:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=13556">Matt</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-53213.html</guid>
			<description><![CDATA[The setting 'MyCode affects signature length' is working the wrong way round. I have the length limit set to 10 characters and I'm using this as the sig:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">[b]1234567890[/b]</code></pre><br />
When 'MyCode affects signature length' is set to YES it should count the MyCode as part of 10 chars. Well, when it's set to YES, it allows the above sig, which is 17 chars.<br />
<br />
When 'MyCode affects signature length' is set to NO it should ignore the MyCode as part of 10 chars. But, when it's set to NO, it disallows the above sig, which is 10 chars.]]></description>
			<content:encoded><![CDATA[The setting 'MyCode affects signature length' is working the wrong way round. I have the length limit set to 10 characters and I'm using this as the sig:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">[b]1234567890[/b]</code></pre><br />
When 'MyCode affects signature length' is set to YES it should count the MyCode as part of 10 chars. Well, when it's set to YES, it allows the above sig, which is 17 chars.<br />
<br />
When 'MyCode affects signature length' is set to NO it should ignore the MyCode as part of 10 chars. But, when it's set to NO, it disallows the above sig, which is 10 chars.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Too large of threads lead to threads that lead to mysql errors]]></title>
			<link>https://community.mybb.com/thread-52622.html</link>
			<pubDate>Thu, 09 Jul 2009 04:45:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=21443">Train</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-52622.html</guid>
			<description><![CDATA[Threads that are too large lead to this<br />
<br />
SQL Error:<br />
    1406 - Data too long for column 'message' at row 1<br />
Query:<br />
    INSERT INTO mybb_posts (<code class="inline-code">tid</code>,<code class="inline-code">fid</code>,<code class="inline-code">subject</code>,<code class="inline-code">icon</code>,<code class="inline-code">uid</code>,<code class="inline-code">username</code>,<code class="inline-code">dateline</code>,<code class="inline-code">message</code>,<code class="inline-code">ipaddress</code>,<code class="inline-code">longipaddress</code>,<code class="inline-code">includesig</code>,<code class="inline-code">smilieoff</code>,<code class="inline-code">visible</code>,<code class="inline-code">posthash</code>) VALUES ('9','2','Rainbows','15','5','Train','1247114615','<img src="https://camo.mybb.com/983afefc2a0eac9f6d74b3156c6f3eebc9690876/687474703a2f2f7777772e6461726b6c616e64736572766572732e636f6d2f736563726574736974652f696d616765732f69636f6e732f7261696e626f772e676966" data-original-url="http://www.darklandservers.com/secretsite/images/icons/rainbow.gif" loading="lazy"  alt="[Image: rainbow.gif]" class="mycode_img" /><img src="https://camo.mybb.com/983afefc2a0eac9f6d74b3156c6f3eebc9690876/687474703a2f2f7777772e6461726b6c616e64736572766572732e636f6d2f736563726574736974652f696d616765732f69636f6e732f7261696e626f772e676966" data-original-url="http://www.darklandservers.com/secretsite/images/icons/rainbow.gif" loading="lazy"  alt="[Image: rainbow.gif]" class="mycode_img" /><img src="https://camo.mybb.com/983afefc2a0eac9f6d74b3156c6f3eebc9690876/687474703a2f2f7777772e6461726b6c616e64736572766572732e636f6d2f736563726574736974652f696d616765732f69636f6e732f7261696e626f772e676966" data-original-url="http://www.darklandservers.com/secretsite/images/icons/rainbow.gif" loading="lazy"  alt="[Image: rainbow.gif]" class="mycode_img" /><img src="https://camo.mybb.com/983afefc2a0eac9f6d74b3156c6f3eebc9690876/687474703a2f2f7777772e6461726b6c616e64736572766572732e636f6d2f736563726574736974652f696d616765732f69636f6e732f7261696e626f772e676966" data-original-url="http://www.darklandservers.com/secretsite/images/icons/rainbow.gif" loading="lazy"  alt="[Image: rainbow.gif]" class="mycode_img" />......plus about another 1,000 of these','72.218.40.206','1222256846','1','0','1','bbd6749b954a5ac663a1a85a8071394d') <br />
<br />
but it still creates the thread.<br />
<br />
so you get this on clicking of the thread<br />
<br />
SQL Error:<br />
    1366 - Incorrect integer value: '' for column 'firstpost' at row 1<br />
Query:<br />
    UPDATE mybb_threads SET <code class="inline-code">firstpost</code>='' WHERE tid='5']]></description>
			<content:encoded><![CDATA[Threads that are too large lead to this<br />
<br />
SQL Error:<br />
    1406 - Data too long for column 'message' at row 1<br />
Query:<br />
    INSERT INTO mybb_posts (<code class="inline-code">tid</code>,<code class="inline-code">fid</code>,<code class="inline-code">subject</code>,<code class="inline-code">icon</code>,<code class="inline-code">uid</code>,<code class="inline-code">username</code>,<code class="inline-code">dateline</code>,<code class="inline-code">message</code>,<code class="inline-code">ipaddress</code>,<code class="inline-code">longipaddress</code>,<code class="inline-code">includesig</code>,<code class="inline-code">smilieoff</code>,<code class="inline-code">visible</code>,<code class="inline-code">posthash</code>) VALUES ('9','2','Rainbows','15','5','Train','1247114615','<img src="https://camo.mybb.com/983afefc2a0eac9f6d74b3156c6f3eebc9690876/687474703a2f2f7777772e6461726b6c616e64736572766572732e636f6d2f736563726574736974652f696d616765732f69636f6e732f7261696e626f772e676966" data-original-url="http://www.darklandservers.com/secretsite/images/icons/rainbow.gif" loading="lazy"  alt="[Image: rainbow.gif]" class="mycode_img" /><img src="https://camo.mybb.com/983afefc2a0eac9f6d74b3156c6f3eebc9690876/687474703a2f2f7777772e6461726b6c616e64736572766572732e636f6d2f736563726574736974652f696d616765732f69636f6e732f7261696e626f772e676966" data-original-url="http://www.darklandservers.com/secretsite/images/icons/rainbow.gif" loading="lazy"  alt="[Image: rainbow.gif]" class="mycode_img" /><img src="https://camo.mybb.com/983afefc2a0eac9f6d74b3156c6f3eebc9690876/687474703a2f2f7777772e6461726b6c616e64736572766572732e636f6d2f736563726574736974652f696d616765732f69636f6e732f7261696e626f772e676966" data-original-url="http://www.darklandservers.com/secretsite/images/icons/rainbow.gif" loading="lazy"  alt="[Image: rainbow.gif]" class="mycode_img" /><img src="https://camo.mybb.com/983afefc2a0eac9f6d74b3156c6f3eebc9690876/687474703a2f2f7777772e6461726b6c616e64736572766572732e636f6d2f736563726574736974652f696d616765732f69636f6e732f7261696e626f772e676966" data-original-url="http://www.darklandservers.com/secretsite/images/icons/rainbow.gif" loading="lazy"  alt="[Image: rainbow.gif]" class="mycode_img" />......plus about another 1,000 of these','72.218.40.206','1222256846','1','0','1','bbd6749b954a5ac663a1a85a8071394d') <br />
<br />
but it still creates the thread.<br />
<br />
so you get this on clicking of the thread<br />
<br />
SQL Error:<br />
    1366 - Incorrect integer value: '' for column 'firstpost' at row 1<br />
Query:<br />
    UPDATE mybb_threads SET <code class="inline-code">firstpost</code>='' WHERE tid='5']]></content:encoded>
		</item>
	</channel>
</rss>