function me_update_6250 in me aliases 6
Same name and namespace in other branches
- 6.2 me.install \me_update_6250()
Implementation of hook_update_N() to increase the weight of me to make sure other modules can use the %user wildcards as they expect them to be.
File
- ./
me.install, line 42 - Provides 'me' aliases install and uninstall routines.
Code
function me_update_6250() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 9999 WHERE name = 'me'");
return $ret;
}