Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fusiondirectory
fusiondirectory
Commits
33362646
Commit
33362646
authored
Jan 19, 2017
by
Côme Chilliet
Browse files
Fixes
#946
Avoid PHP errors about undefined keys in plNotify
parent
11d074e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/simpleplugin/class_simpleTabs.inc
View file @
33362646
...
...
@@ -79,7 +79,8 @@ class simpleTabs
continue
;
}
$this
->
by_name
[
$tab
[
'CLASS'
]]
=
$tab
[
'NAME'
];
$this
->
by_name
[
$tab
[
'CLASS'
]]
=
$tab
[
'NAME'
];
$this
->
plNotify
[
$tab
[
'CLASS'
]]
=
FALSE
;
if
(
$baseobject
===
NULL
)
{
$baseobject
=
new
$tab
[
'CLASS'
](
$this
->
dn
,
$attrs_object
,
$this
,
TRUE
);
...
...
@@ -466,7 +467,8 @@ class simpleTabs
continue
;
}
$this
->
by_name
[
$tab
[
'CLASS'
]]
=
$tab
[
'NAME'
];
$this
->
by_name
[
$tab
[
'CLASS'
]]
=
$tab
[
'NAME'
];
$this
->
plNotify
[
$tab
[
'CLASS'
]]
=
FALSE
;
$this
->
by_object
[
$tab
[
'CLASS'
]]
=
new
$tab
[
'CLASS'
](
$this
->
dn
,
$baseobject
,
$this
,
FALSE
);
$this
->
by_object
[
$tab
[
'CLASS'
]]
->
set_acl_category
(
$this
->
acl_category
);
}
...
...
Côme Chilliet
@cchilliet
mentioned in issue
#350 (closed)
·
Sep 02, 2017
mentioned in issue
#350 (closed)
mentioned in issue #350
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment