MyBB Community Forums

Full Version: Postbit problem after upgrade to 33
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As like always I change a little bit in the postbit-classic file. Never faced any issue.

But after this update when I changed it is showing 

[Image: error.png]
Now it is showing whenever I try to view any thread.

So, I changed back the changes that were done to the postbit-classic. But still the problem is there.

I am testing this in my localhost.
Can you share the current content of the postbit_classic template?
It is now like this. And still has the problem. I don't see any problem when I view the main forum or subforums. Just when I try to see the threads. This error appears.

{$ignore_bit}{$deleted_bit}
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div class="post classic {$unapproved_shade} gidpostbody gidpostbody_{$usergroup['gid']}" style="{$post_visibility}" id="post_{$post['pid']}">
<div class="post_author scaleimages">
	{$post['useravatar']}
	<div class="author_information">
			<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
			<span class="smalltext">
				<span class="grouptag grouptag_{$usergroup['gid']}">&nbsp; {$post['usertitle']}</span><br />
				<span style="text-align: center;" class="userstar star_{$post['stars']}" title="{$post['usertitle']}"></span><br /> 
				{$post['groupimage']}
			</span>
	</div>
	<div class="author_statistics">
		{$post['user_details']}
	</div>
</div>
<div class="post_content{$post['styleclass']}">
	<div class="post_head">
		{$post['posturl']}
		{$post['icon']}
		<span class="post_date">{$post['postdate']} <span class="post_edit" id="edited_by_{$post['pid']}">{$post['editedmsg']}</span></span>
	{$post['subject_extra']}
	</div>
	<div class="post_body scaleimages" id="pid_{$post['pid']}">
		{$post['message']}
	</div>
	{$post['attachments']}
	{$post['signature']}
	<div class="post_meta" id="post_meta_{$post['pid']}">
		{$post['iplogged']}
		<div class="float_right">
			{$post['poststatus']}
		</div>
	</div>
		<div class="postbit_buttons author_buttons float_left">
		{$post['button_rep']}{$post['button_report']}
	</div>
	<div class="postbit_buttons post_management_buttons float_right">
		{$post['button_tyl']}{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
	</div>
	{$post['input_editreason']
	
														</div>











<div style="{$post['tyl_display']}" id="tyl_{$post['pid']}">{$post['thankyoulike_data']}</div>


<div class="post_controls">
	
</div>
</div>
{$post['input_editreason']

Missing the closing }

Should be:

{$post['input_editreason']}
(2023-01-15, 01:34 PM)Matt Wrote: [ -> ]

Missing the closing }

Should be:


Yup, it did the trick. I knew something very simple is missing. Since it was fine at first. Anyway, thanks.