Quote:
Originally Posted by Ian Emu-UK
Is there a quick and easy way to add the normal navbar at the top as well as the statistics one?
|
In statistic.php, find:
PHP Code:
//Zuerst mal die Einstellungen aus der Daten bank holen
Right before that, add:
PHP Code:
$navbits = array();
$navbits[''] = 'vB Statistics';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
The go to your statistic_header template and find:
Add below that: