diff options
Diffstat (limited to 'modules/user.module')
-rw-r--r-- | modules/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user.module b/modules/user.module index aefa1aea5..d23deda98 100644 --- a/modules/user.module +++ b/modules/user.module @@ -734,7 +734,7 @@ function user_menu($may_cache) { //Your personal page if ($user->uid) { $items[] = array('path' => 'user/'. $user->uid, 'title' => t('my account'), - 'callback' => 'user_view', 'callback arguments' => arg(1), 'access' => TRUE, + 'callback' => 'user_view', 'callback arguments' => array(arg(1)), 'access' => TRUE, 'type' => MENU_DYNAMIC_ITEM); } |