You are here

function biblio_update_7003 in Bibliography Module 7.2

Same name and namespace in other branches
  1. 7 biblio.install \biblio_update_7003()

Adds some new publication types

File

./biblio.install, line 1662

Code

function biblio_update_7003() {
  $result = db_query('SELECT tid FROM {biblio_types} WHERE tid = :tid', array(
    ':tid' => 136,
  ))
    ->fetchField();
  if (!$result) {
    biblio_update_6031();
  }
}