Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
03299556
Commit
03299556
authored
18 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#69985
by Tobias: user/login shouldn't be accessible for authenticated users.
parent
6e8a0a16
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/user/user.module
+8
-4
8 additions, 4 deletions
modules/user/user.module
with
8 additions
and
4 deletions
modules/user/user.module
+
8
−
4
View file @
03299556
...
...
@@ -697,11 +697,11 @@ function user_menu($may_cache) {
// Registration and login pages.
$items
[]
=
array
(
'path'
=>
'user/login'
,
'title'
=>
t
(
'log in'
),
'callback'
=>
'drupal_get_form'
,
'callback arguments'
=>
array
(
'user_login'
),
'type'
=>
MENU_DEFAULT_LOCAL_TASK
);
'callback'
=>
'drupal_get_form'
,
'callback arguments'
=>
array
(
'user_login'
),
'access'
=>
!
$user
->
uid
,
'type'
=>
MENU_DEFAULT_LOCAL_TASK
);
$items
[]
=
array
(
'path'
=>
'user/register'
,
'title'
=>
t
(
'create new account'
),
'callback'
=>
'drupal_get_form'
,
'callback arguments'
=>
array
(
'user_register'
),
'access'
=>
$user
->
uid
==
0
&&
variable_get
(
'user_register'
,
1
),
'type'
=>
MENU_LOCAL_TASK
);
'callback'
=>
'drupal_get_form'
,
'callback arguments'
=>
array
(
'user_register'
),
'access'
=>
!
$user
->
uid
&&
variable_get
(
'user_register'
,
1
),
'type'
=>
MENU_LOCAL_TASK
);
$items
[]
=
array
(
'path'
=>
'user/password'
,
'title'
=>
t
(
'request new password'
),
'callback'
=>
'drupal_get_form'
,
'callback arguments'
=>
array
(
'user_pass'
),
'access'
=>
$user
->
uid
==
0
,
'type'
=>
MENU_LOCAL_TASK
);
'callback'
=>
'drupal_get_form'
,
'callback arguments'
=>
array
(
'user_pass'
),
'access'
=>
!
$user
->
uid
,
'type'
=>
MENU_LOCAL_TASK
);
$items
[]
=
array
(
'path'
=>
'user/reset'
,
'title'
=>
t
(
'reset password'
),
'callback'
=>
'drupal_get_form'
,
'callback arguments'
=>
array
(
'user_pass_reset'
),
'access'
=>
TRUE
,
'type'
=>
MENU_CALLBACK
);
$items
[]
=
array
(
'path'
=>
'user/help'
,
'title'
=>
t
(
'help'
),
...
...
@@ -771,7 +771,7 @@ function user_menu($may_cache) {
}
$items
[]
=
array
(
'path'
=>
'logout'
,
'title'
=>
t
(
'log out'
),
'access'
=>
$user
->
uid
!=
0
,
'access'
=>
$user
->
uid
,
'callback'
=>
'user_logout'
,
'weight'
=>
10
);
}
...
...
@@ -900,6 +900,10 @@ function user_login($msg = '') {
'#attributes'
=>
array
(
'tabindex'
=>
'2'
),
);
$form
[
'submit'
]
=
array
(
'#type'
=>
'submit'
,
'#value'
=>
t
(
'Log in'
),
'#weight'
=>
2
,
'#attributes'
=>
array
(
'tabindex'
=>
'3'
));
// We set the action to 'user' because 'user/login' is no longer accessible once logged in:
$form
[
'#action'
]
=
url
(
'user'
);
return
$form
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment