diff options
Diffstat (limited to 'modules/user/user.pages.inc')
-rw-r--r-- | modules/user/user.pages.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.pages.inc b/modules/user/user.pages.inc index ada98b6fb..757f480d0 100644 --- a/modules/user/user.pages.inc +++ b/modules/user/user.pages.inc @@ -168,7 +168,7 @@ function template_preprocess_user_profile(&$variables) { $variables['profile'] = array(); // Sort sections by weight uasort($variables['account']->content, 'element_sort'); - // Provide keyed variables so themers can print each section independantly. + // Provide keyed variables so themers can print each section independently. foreach (element_children($variables['account']->content) as $key) { $variables['profile'][$key] = drupal_render($variables['account']->content[$key]); } |