You are here

function weather_update_6509 in Weather 6.5

Implementation of hook_update_N().

Remove obsolete fetch method variable.

File

./weather.install, line 714
Database installation of weather module.

Code

function weather_update_6509() {
  $ret = array();
  variable_del('weather_fetch');
  return $ret;
}