function biblio_update_7003 in Bibliography Module 7
Same name and namespace in other branches
- 7.2 biblio.install \biblio_update_7003()
Adds some new publication types.
File
- ./
biblio.install, line 2039
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();
}
}