Quote:
Originally Posted by rinkrat
Getting this error on new thread creation after upgrade to VB 4.22
Warning: Creating default object from empty value in ..../dbtech/original_poster/hooks/postbit_display_complete.php on line 37
I'm sure you're busy, but thought I'd let you know!
|
I can't replicate that error, i am still on php v5.3, so could you test something for me?
Open the file, dbtech/original_poster/hooks/postbit_display_complete.php and find this:
Code:
if (!$vbulletin->condition = $post['postcount'] == '1')
And change it to this:
Code:
if ($post['postcount'] != '1')
Then see if you still get the error.