File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ by eosrei
7
7
- Adjusted whitespace use
8
8
- Corrected coder module warnings
9
9
- Converted module for use with Drupal 7
10
+ by mrmarco
11
+ - Updated admin documentation
12
+ - Updated LICENSE
13
+ - Alter local user login form to indicate it's for local accounts
14
+ - #83: Corrected spelling of SUNet ID and Log In
15
+ - #82: Allow WMD users to change their email
16
+ - #78: Allow theming of login block
17
+ - #76: Users can't log in if anonymous users don't have the "access content" permission
18
+ - #75: Endless redirects with expired sessions
10
19
11
20
12
21
WebAuth 6.x-3.1 2012-02-09
Original file line number Diff line number Diff line change @@ -66,6 +66,15 @@ Authorizations is where you can decide who can login to your site using
66
66
WebAuth. By default it's anyone with a SUNet ID (valid-user) but you can
67
67
restrict that further if you want.
68
68
69
+ -- KNOWN ISSUES --
70
+
71
+ Because the WebAuth module for Drupal attempts to log people in automatically
72
+ if they reach a restricted resource, removing "View Published Content" permissions
73
+ from anonymous users may result in users not being able to log out. That's because
74
+ upon log out, users are redirected to the home page. If the home page is restricted,
75
+ the module will log the users back in again. The current workaround is to quit
76
+ the browser to destroy the WebAuth cookie.
77
+
69
78
-- TROUBLESHOOTING --
70
79
71
80
If you encounter any issues while using this module at Stanford,
Original file line number Diff line number Diff line change @@ -91,13 +91,13 @@ function webauth_menu() {
91
91
92
92
$items[$path] = array(
93
93
'page callback' => 'webauth_return',
94
- 'access arguments ' => array('access content') ,
94
+ 'access callback ' => TRUE ,
95
95
'type' => MENU_CALLBACK,
96
96
);
97
97
98
98
$items['webauth/403'] = array(
99
99
'page callback' => 'webauth_error_page',
100
- 'access arguments ' => array('access content') ,
100
+ 'access callback ' => TRUE ,
101
101
'type' => MENU_CALLBACK,
102
102
);
103
103
You can’t perform that action at this time.
0 commit comments