Never mind, I figured it out. I edited admincp/index.php
Somewhere around line 952 is the following code:
PHP Code:
print_label_row($vbphrase['useful_links'], '
<form style="display:inline">
<select onchange="if (this.options[this.selectedIndex].value != \'\') { window.open(this.options[this.selectedIndex].value); } return false;" tabindex="1" class="bginput">
<option value="">-- ' . $vbphrase['useful_links'] . ' --</option>' . construct_select_options(array(
'vBulletin' => array(
'http://www.vbulletin.com/' => $vbphrase['home_page'] . ' (vBulletin.com)',
'http://members.vbulletin.com/' => $vbphrase['members_area'],
'http://www.vbulletin.com/forum/' => $vbphrase['community_forums'],
'http://www.vbulletin.com/docs/html/' => $vbphrase['reference_manual']
),
'PHP' => array(
'http://www.ph' . 'p.net/' => $vbphrase['home_page'] . ' (PHP.net)',
'http://www.ph' . 'p.net/manual/' => $vbphrase['reference_manual'],
'http://www.ph' . 'p.net/downloads.ph' . 'p' => $vbphrase['download_latest_version']
),
'MySQL' => array(
'http://www.mysql.com/' => $vbphrase['home_page'] . ' (MySQL.com)',
'http://www.mysql.com/documentation/' => $vbphrase['reference_manual'],
'http://www.mysql.com/downloads/' => $vbphrase['download_latest_version'],
),
'Apache' => array(
'http://httpd.apache.org/' => $vbphrase['home_page'] . ' (Apache.org)',
'http://httpd.apache.org/docs/' => $vbphrase['reference_manual'],
'http://httpd.apache.org/download.cgi' => $vbphrase['download_latest_version'],
),
I just added what I wanted after the Apache stuff:
PHP Code:
'Other Links' => array(
'http://www.somewebsite.com/somepage/' => 'A Description',
'http://www.somewebsite.com/somepage/' => 'A Description',
),