Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
sfroger
fusiondirectory
Commits
73eca226
Commit
73eca226
authored
7 years ago
by
Côme Chilliet
Browse files
Options
Download
Patches
Plain Diff
fix(UserAttribute) Reset blacklist and whitlist to avoid problems
issue #5816
parent
3b3879e4
1.4-dev
1.3-fixes
5845-gitlab-ci-make-the-artifact-without-root-folder
6009-updating-the-locales-for-1-3-1
6022-use-reuse-from-fsfe-for-licence-compliance
6071-rework-the-error-system
6091-object-deletion-should-not-delete-each-tab-separately
6092-deprecated-fallback-was-used-for-supannstructureext-is_this_account
dyngroup
master
fusiondirectory-1.3
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/simpleplugin/class_dialogAttributes.inc
+17
-0
include/simpleplugin/class_dialogAttributes.inc
with
17 additions
and
0 deletions
+17
-0
include/simpleplugin/class_dialogAttributes.inc
+
17
−
0
View file @
73eca226
...
@@ -102,6 +102,13 @@ class SingleUserSelectDialog extends GenericDialog
...
@@ -102,6 +102,13 @@ class SingleUserSelectDialog extends GenericDialog
{
{
protected
$dialogClass
=
'singleUserSelect'
;
protected
$dialogClass
=
'singleUserSelect'
;
function
dialog_execute
()
{
session
::
set
(
'filterBlacklist'
,
$this
->
attribute
->
getFilterBlackList
());
session
::
set
(
'filterWhitelist'
,
$this
->
attribute
->
getFilterWhiteList
());
return
parent
::
dialog_execute
();
}
function
handle_finish
()
function
handle_finish
()
{
{
$result
=
$this
->
dialog
->
detectPostActions
();
$result
=
$this
->
dialog
->
detectPostActions
();
...
@@ -706,6 +713,16 @@ class DialogButtonAttribute extends ButtonAttribute
...
@@ -706,6 +713,16 @@ class DialogButtonAttribute extends ButtonAttribute
$this
->
plugin
->
openDialog
(
new
$this
->
dialogClass
(
$this
->
plugin
,
$this
));
$this
->
plugin
->
openDialog
(
new
$this
->
dialogClass
(
$this
->
plugin
,
$this
));
}
}
}
}
function
getFilterBlackList
()
{
return
array
();
}
function
getFilterWhiteList
()
{
return
array
();
}
}
}
/*!
/*!
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets