Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
a154806f
Commit
a154806f
authored
11 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Patches
Plain Diff
authad: capabilities depend on userdomain specific config
parent
8257d713
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
inc/html.php
+2
-0
2 additions, 0 deletions
inc/html.php
lib/plugins/authad/auth.php
+13
-0
13 additions, 0 deletions
lib/plugins/authad/auth.php
with
15 additions
and
0 deletions
inc/html.php
+
2
−
0
View file @
a154806f
...
...
@@ -1352,6 +1352,8 @@ function html_updateprofile(){
/** @var auth_basic $auth */
global
$auth
;
var_dump
(
$auth
);
print
p_locale_xhtml
(
'updateprofile'
);
$fullname
=
$INPUT
->
post
->
str
(
'fullname'
,
$INFO
[
'userinfo'
][
'name'
],
true
);
...
...
This diff is collapsed.
Click to expand it.
lib/plugins/authad/auth.php
+
13
−
0
View file @
a154806f
...
...
@@ -110,6 +110,19 @@ class auth_plugin_authad extends DokuWiki_Auth_Plugin {
$this
->
cando
[
'modMail'
]
=
true
;
}
/**
* Load domain config on capability check
*
* @param string $cap
* @return bool
*/
public
function
canDo
(
$cap
)
{
//capabilities depend on config, which may change depending on domain
$domain
=
$this
->
_userDomain
(
$_SERVER
[
'REMOTE_USER'
]);
$this
->
_loadServerConfig
(
$domain
);
return
parent
::
canDo
(
$cap
);
}
/**
* Check user+password [required auth function]
*
...
...
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