You are here

function pathauto_update_6201 in Pathauto 6.2

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

Remove obsolete variables since batch API is now used.

File

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

Code

function pathauto_update_6201() {
  variable_del('pathauto_max_bulk_update');
  variable_del('pathauto_node_bulkupdate');
  variable_del('pathauto_taxonomy_bulkupdate');
  variable_del('pathauto_forum_bulkupdate');
  variable_del('pathauto_user_bulkupdate');
  variable_del('pathauto_blog_bulkupdate');
  variable_del('pathauto_modulelist');
  variable_del('pathauto_indexaliases');
  variable_del('pathauto_indexaliases_bulkupdate');
  return array();
}