You are here

function biblio_update_7006 in Bibliography Module 7

Same name and namespace in other branches
  1. 7.2 biblio.install \biblio_update_7006()
1 call to biblio_update_7006()
biblio_update_7012 in ./biblio.install
Update biblio_field_type table.

File

./biblio.install, line 2106

Code

function biblio_update_7006() {
  $result = db_query('SELECT fid FROM {biblio_field_type} WHERE tid = :tid', array(
    ':tid' => 136,
  ))
    ->fetchField();
  if (!$result) {
    _biblio_update_field_link_data(array(
      131,
      136,
    ));
    cache_clear_all();
  }
}