You are here

function biblio_type_remove in Bibliography Module 5

1 string reference to 'biblio_type_remove'
biblio_menu in ./biblio.module
Implementation of hook_menu().

File

./biblio.module, line 1329

Code

function biblio_type_remove($tid = 0, $fid = 0) {
  db_query('DELETE FROM {biblio_type_details} WHERE tid = %d AND fid = %d', $tid, $fid);
  drupal_goto("admin/settings/biblio/types/edit/{$tid}");
}