You are here

function glossary_update_5100 in Glossary 5.2

Same name and namespace in other branches
  1. 5 glossary.install \glossary_update_5100()

Implementation of hook_update_N(). In order to make sure we don't turn off the search block, we'll change the blocks table.

File

./glossary.install, line 12
Install file for Glossary module.

Code

function glossary_update_5100() {
  $ret = array();
  $ret[] = update_sql("UPDATE {blocks} SET delta=0 WHERE module='glossary' AND delta='999'");
  return $ret;
}