Works perfectly but I have two errors in the logs.
[12-Aug-2020 00:45:35 UTC] PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in /home/.../public_html/.../global.php(607) : eval()'d code(126) : eval()'d code on line 1
[12-Aug-2020 00:45:35 UTC] PHP Warning: Use of undefined constant userid - assumed 'userid' (this will throw an Error in a future version of PHP) in /home/f.../public_html/.../misc.php(100) : eval()'d code(502) : eval()'d code on line 1
I tried to fix them but it didn't work. The 'index' error is most likely caused by the following code inside the MN mod but I don't how to fix that:
Code:
if (!in_array($vbulletin->userinfo['usergroupid'], array($cybtopstats_exclgroups)) AND $vbulletin->options['cybtopstats_enable_global'] AND !isset($_POST['fromquickreply']) AND (THIS_SCRIPT == "index" OR THIS_SCRIPT == "misc" OR THIS_SCRIPT == $vbulletin->options['cybtopstats_add_loc']))
{
global $vbulletin;
Any idea?