Quote:
Originally Posted by Pseudomizer
Thanks StarBug for pointing this out. But regardless of this it should work with the appropriate changes.
But ok. With the next update i will change the header in the PHP file from:
PHP Code:
define('THIS_SCRIPT','chat');
to
PHP Code:
define('THIS_SCRIPT','LinkMe');
And for your first request:
It is very easy to define unknown locations. You have to create 2 entries. One entry like this:
PHP Code:
case 'LinkMe':
$userinfo['action'] = 'LinkMe';
$userinfo['where'] = "<a href=\"LinkMe.php\">$vboptions[bbtitle] LinkMe</a>";
break;
and then a second entry like this:
PHP Code:
case 'LinkMe.php':
$userinfo['activity'] = 'LinkMe';
break;
And if you would like to know where to place these please look into my install.html from this hack. This should help.
Cheers,
|
You missunderstood me.
I know where I should place this but I need to know where:
case 'LinkMe':
the 'LinkMe' is taken from.
Hope you know what I mean
Ah and one more thing to fixe:
In LinkMe.php
find:
PHP Code:
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('LinkMe') . '");');
above it add:
PHP Code:
$navbits = array('' => "LinkMe");
$navbits = construct_navbits($navbits);
StarBuG