You are here

function globalredirect_update_6100 in Global Redirect 6

Same name and namespace in other branches
  1. 7 globalredirect.install \globalredirect_update_6100()

Fixed misspelled variable name.

File

./globalredirect.install, line 18
Install, update and uninstall functions for the globalredirect module.

Code

function globalredirect_update_6100() {
  $deslash = variable_get('globalredirect_deslah', variable_get('globalredirect_deslash', 1));
  variable_set('globalredirect_deslash', $deslash);
  variable_del('globalredirect_deslah');
  return array();
}