You are here

function domain_locale_update_6101 in Domain Locale 6

File

./domain_locale.install, line 77
Provides domain specific locale settings

Code

function domain_locale_update_6101() {
  $ret = array();

  // Set domain_locale higher than i18n if it exists
  $result = db_result(db_query("SELECT weight FROM {system} WHERE name = 'i18n'"));
  if ($result) {
    $weight = $result + 1;
    $ret[] = update_sql("UPDATE {system} SET weight = " . $weight . " WHERE name = 'domain_locale'");
  }
  return $ret;
}