You are here

function password_policy_update_6102 in Password Policy 6

Increase module weight to support phpass.

File

./password_policy.install, line 346
File module installation and upgrade code.

Code

function password_policy_update_6102() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 1 WHERE type = 'module' AND name = 'password_policy'");
  return $ret;
}