You are here

function pathauto_update_6200 in Pathauto 6.2

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

Remove the unsupported user/%/contact and user/%/tracker pattern variables.

File

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

Code

function pathauto_update_6200() {
  variable_del('pathauto_contact_bulkupdate');
  variable_del('pathauto_contact_pattern');
  variable_del('pathauto_contact_supportsfeeds');
  variable_del('pathauto_contact_applytofeeds');
  variable_del('pathauto_tracker_bulkupdate');
  variable_del('pathauto_tracker_pattern');
  variable_del('pathauto_tracker_supportsfeeds');
  variable_del('pathauto_tracker_applytofeeds');
  return array();
}