You are here

function custom_search_update_6102 in Custom Search 6

File

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

Code

function custom_search_update_6102() {
  $ret = array();
  if (variable_get('custom_search_path', '') != '') {
    variable_set('custom_search_paths', variable_get('custom_search_path', '') . '|Custom path');
  }
  variable_del('custom_search_path');
  return $ret;
}