You are here

function biblio_update_24 in Bibliography Module 5

Same name and namespace in other branches
  1. 6.2 biblio.install \biblio_update_24()
  2. 6 biblio.install \biblio_update_24()

File

./biblio.install, line 663

Code

function biblio_update_24() {
  $result = array();
  $result[] = update_sql("UPDATE {biblio}  SET  biblio_year = 9998 WHERE biblio_year = 1 ;");
  $result[] = update_sql("UPDATE {biblio_fields} SET size = 9 WHERE name = 'biblio_year';");
  $result[] = update_sql("UPDATE {biblio_fields} SET maxsize = 9 WHERE name = 'biblio_year';");
  return $result;
}