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
BARDOT Jérôme
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-fixes
1.3.1-fixes
6199-creation-of-new-class-mail-template-new-configuration-menu-item
master
fusiondirectory-1.4
fusiondirectory-1.3.1
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
{
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
()
{
$result
=
$this
->
dialog
->
detectPostActions
();
...
...
@@ -706,6 +713,16 @@ class DialogButtonAttribute extends ButtonAttribute
$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