You are here

function custom_search_update_7102 in Custom Search 7

Custom search paths upgrade.

File

./custom_search.install, line 55
Install, update, and uninstall functions for the custom search module.

Code

function custom_search_update_7102() {
  if (variable_get('custom_search_path', '') != '') {
    variable_set('custom_search_paths', variable_get('custom_search_path', '') . '|Custom path');
  }
  variable_del('custom_search_path');
  return t('Custom search paths upgraded.');
}