registry team mailing list archive
-
registry team
-
Mailing list archive
-
Message #30265
Re: [Merge] lp:~catch-drupal/pressflow/load_cache into lp:pressflow
Review: Needs Fixing
Hi Nathan,
I noticed a small issue in the user_save hook which was preventing user_save's from completing on a test site. A patch is below:
=== modified file 'modules/user/user.module'
--- modules/user/user.module 2010-10-25 02:49:05 +0000
+++ modules/user/user.module 2010-12-06 19:06:19 +0000
@@ -265,10 +265,10 @@
if ($hook_module !== FALSE) {
$function = $hook_module . '_' . $hook;
- $return = $function($account, $array = array(), $category = 'account');
+ $return = $function($account, $array, $category);
}
else {
- $return = _user_save_direct($account, $array = array(), $category = 'account');
+ $return = _user_save_direct($account, $array, $category);
}
return $return;
}
--
https://code.launchpad.net/~catch-drupal/pressflow/load_cache/+merge/39241
Your team Registry Administrators is subscribed to branch lp:pressflow.