You are here

function biblio_update_24 in Bibliography Module 6.2

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

Update ...

File

./biblio.install, line 1815
Install, update, and uninstall functions for the biblio module.

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;
}