You are here

function glossary_update_5102 in Glossary 5.2

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

Implementation of hook_update_N(). We have moved the settings, so we'll remind the user of this.

File

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

Code

function glossary_update_5102() {
  $ret = array();
  drupal_set_message('Note: The settings for the Glossary module have moved from the Input Formats page to a separate page under Administer » Site configuration » Glossary. Additionally, there are a few new settings.', 'error');
  return $ret;
}