Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-perun
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
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
Perun
Perun ProxyIdP
v1
simplesamlphp-module-perun
Merge requests
!116
Bugfixes in getFacilityCapabilities
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Bugfixes in getFacilityCapabilities
github/fork/vyskocilpavel/facility_capabilities_fix
into
master
Overview
1
Commits
1
Pipelines
0
Changes
2
Merged
Pavel Vyskočil
requested to merge
github/fork/vyskocilpavel/facility_capabilities_fix
into
master
5 years ago
Overview
1
Commits
1
Pipelines
0
Changes
2
Expand
Fixed the bug with getting more than one facilityCapabiliy from LDAP
Return [] instead of null in getFacilityCapability via RPC, if facilityCapability is not set
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c5ca6c2a
1 commit,
2 years ago
2 files
+
5
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
lib/AdapterRpc.php
+
4
−
0
Options
@@ -558,6 +558,10 @@ class AdapterRpc extends Adapter
'attributeName'
=>
'urn:perun:facility:attribute-def:def:capabilities'
])[
'value'
];
if
(
empty
(
$facilityCapabilities
))
{
$facilityCapabilities
=
[];
}
return
$facilityCapabilities
;
}
}
Loading