It appears I forgot something... the delete function for the media manager won't work without this added:
/admincp/dnpmusicbox_setting.php
Code:
//Delete Media
if ($_REQUEST['do'] == 'delmedia'){
$vbulletin->input->clean_array_gpc('r', array('id' => TYPE_INT));
$db->query_write("DELETE FROM " . TABLE_PREFIX . "music_song WHERE id = " . $vbulletin->GPC['id']);
exec_header_redirect("dnpmusicbox_setting.php?do=updatemedia");
exit;
}
needs to be added at the beginning of the file somewhere around the other deletes