You are here

function pathauto_update_6202 in Pathauto 6.2

Same name and namespace in other branches
  1. 7 pathauto.install \pathauto_update_6202()

Remove obsolete variables for removed feed handling.

File

./pathauto.install, line 114
Install, update, and uninstall functions for Pathauto.

Code

function pathauto_update_6202() {
  variable_del('pathauto_node_supportsfeeds');
  variable_del('pathauto_node_applytofeeds');
  variable_del('pathauto_taxonomy_supportsfeeds');
  variable_del('pathauto_taxonomy_applytofeeds');
  variable_del('pathauto_forum_supportsfeeds');
  variable_del('pathauto_forum_applytofeeds');
  variable_del('pathauto_user_supportsfeeds');
  variable_del('pathauto_user_applytofeeds');
  variable_del('pathauto_blog_supportsfeeds');
  variable_del('pathauto_blog_applytofeeds');
  return array();
}