diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-05-18 00:07:38 -0500 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-05-18 00:07:38 -0500 |
commit | 75a0deb2722bde4fc7d60d02f186809fbc77320d (patch) | |
tree | 32f7f65f2a30a4970550f93e45f79c2b4c3bd589 /modules/user/user.module | |
parent | 8c3dbb5e7f0a997662350ca44efa271514e83047 (diff) | |
download | brdo-75a0deb2722bde4fc7d60d02f186809fbc77320d.tar.gz brdo-75a0deb2722bde4fc7d60d02f186809fbc77320d.tar.bz2 |
Issue #1089174 by plach: Fixed Prepare view hooks do not receive the language parameter.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 63e97ba3c..90d313b10 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2512,8 +2512,8 @@ function user_build_content($account, $view_mode = 'full', $langcode = NULL) { $account->content = array(); // Build fields content. - field_attach_prepare_view('user', array($account->uid => $account), $view_mode); - entity_prepare_view('user', array($account->uid => $account)); + field_attach_prepare_view('user', array($account->uid => $account), $view_mode, $langcode); + entity_prepare_view('user', array($account->uid => $account), $langcode); $account->content += field_attach_view('user', $account, $view_mode, $langcode); // Populate $account->content with a render() array. |