You are here

function maxlength_update_3 in Maxlength 6.2

Implementation of hook_update_N().

File

./maxlength.install, line 55
Install file for the maxlenght module

Code

function maxlength_update_3() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 1 WHERE name = 'maxlength'");
  return $ret;
}