Quote:
Originally Posted by beekay
Live topic stopped working when I put this condition in the plugin
<if condition="is_member_of($bbuserinfo, array(5,6,7))">
{
$is_livetopic = true;
$livetopichook = 'ajax_start';
include 'includes/livetopic_hooks.php';
}
</if>
any ideas?
|
That's because you're using template code in a plugin (plugins are php code.)
It would be:
Code:
global $vbulletin;
if (is_member_of($vbulletin->userinfo, array(5,6,7))
{
$is_livetopic = true;
$livetopichook = 'ajax_start';
include 'includes/livetopic_hooks.php';
}
also you need to use $vbulletin->userinfo instead of $bbuserinfo in php/plugins.