You are here

function i18ntaxonomy_update_6002 in Internationalization 6

Set module weight for it to run after core modules, but before views.

File

i18ntaxonomy/i18ntaxonomy.install, line 90
Installation file for i18ntaxonomy module.

Code

function i18ntaxonomy_update_6002() {
  $items = array();
  $items[] = update_sql("UPDATE {system} SET weight = 5 WHERE name = 'i18ntaxonomy' AND type = 'module'");
  return $items;
}