diff --git a/core/modules/user/user.module b/core/modules/user/user.module
index 928daad..6c3347e 100644
--- a/core/modules/user/user.module
+++ b/core/modules/user/user.module
@@ -1832,6 +1832,13 @@ function user_menu() {
     'file' => 'user.pages.inc',
   );
 
+  $items['user/edit'] = array(
+    'title' => 'Edit',
+    'page callback' => 'user_edit_page',
+    'access callback' => 'user_is_logged_in',
+    'type' => MENU_CALLBACK,
+  );
+
   $items['user/%user/edit'] = array(
     'title' => 'Edit',
     'page callback' => 'drupal_get_form',
@@ -2501,6 +2508,14 @@ function user_delete_multiple(array $uids) {
 }
 
 /**
+ * Page callback wrapper for user_profile_form().
+ */
+function user_edit_page() {
+  global $user;
+  drupal_goto('user/' . $user->uid . '/edit');
+}
+
+/**
  * Page callback wrapper for user_view().
  */
 function user_view_page($account) {
