Unfortunately it's still not working.
Just to be clear, I added this to the bottom of global.php:
PHP Code:
$mybuddylist = array();
$mybuddylist = explode(' ', $bbuserinfo['buddylist']);
And this to the postbit:
HTML Code:
<tr><td><if condition="in_array($post['userid'], $mybuddylist)">
Remove $post[username] from your buddylist<br />
<else />
Add $post[username] to your buddylist<br />
</if></td></tr>
And this to showthread.php:
PHP Code:
echo "<pre>";
print_r($mybuddylist);
echo "</pre>";
And this is what I get at the top of the page (with one buddy, userid = 2):
Code:
Warning: in_array(): Wrong datatype for second argument in /includes/functions_showthread.php(640) : eval()'d code on line 213
Warning: in_array(): Wrong datatype for second argument in /includes/functions_showthread.php(640) : eval()'d code on line 213
Warning: in_array(): Wrong datatype for second argument in /includes/functions_showthread.php(640) : eval()'d code on line 213
Array
(
[0] => 2
)