$navbits[$parent] = 'Your radio name'; // Your radio name goes here
changed to Radio Radio
<?php
/*
vBulletin Radio 2.3.x
(c) Khaleel Mughal of the
www.death-eater.net support at vbulletin thread:
https://vborg.vbsupport.ru/showthrea...221#post638221
Support only given if you click install
*/
error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'radio');
$phrasegroups = array(
);
$specialtemplates = array(
);
$globaltemplates = array(
'radio',
);
$actiontemplates = array(
);
require_once('./global.php');
$navbits = array();
$navbits[$parent] =
'Radio'; // Radio
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";'); // this means we need the navbar template
eval('print_output("' . fetch_template('radio') . '");'); // and its going to printed and PLACED in the radio template
?>