function system_update_7048

Convert path languages from the empty string to LANGUAGE_NONE.

Related topics

Archivo

drupal-7.x/modules/system/system.install, line 2378
Install, update and uninstall functions for the system module.

Código

function system_update_7048() {
  db_update('url_alias')->fields(array('language' => LANGUAGE_NONE))->condition('language', '')->execute();
}