You are here

function biblio_update_6 in Bibliography Module 5

File

./biblio.install, line 481

Code

function biblio_update_6() {
  $result = array();
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -11 WHERE tid = 1 ");
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -12 WHERE tid = 2 ");
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -13 WHERE tid = 3 ");
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -14 WHERE tid = 4 ");
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -15 WHERE tid = 5 ");
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -16 WHERE tid = 6 ");
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -17 WHERE tid = 7 ");
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -18 WHERE tid = 8 ");
  $result[] = update_sql("UPDATE {biblio_types} SET tid = -19 WHERE tid = 9 ");
  return $result;
}