You are here

function front_page_update_6201 in Front Page 6.2

File

./front_page.install, line 137
Install, update and uninstall functions for the front page module.

Code

function front_page_update_6201() {
  $ret = array();
  variable_del('special_notice_time');
  variable_del('special_notice_text');
  variable_del('front_page_breadcrumb');
  $path = variable_get('front_page_breadcrumb_redirect', '');
  variable_set('front_page_home_link_path', $path);
  variable_del('front_page_breadcrumb_redirect');
  return $ret;
}