mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSsession :: addHelpInfos() : Fixed notice PHP
This commit is contained in:
parent
5f8db76d52
commit
9a4e7374d0
1 changed files with 1 additions and 1 deletions
|
@ -2145,7 +2145,7 @@ class LSsession {
|
||||||
*/
|
*/
|
||||||
public static function addHelpInfos($group,$infos) {
|
public static function addHelpInfos($group,$infos) {
|
||||||
if (is_array($infos)) {
|
if (is_array($infos)) {
|
||||||
if (is_array(self :: $_JSconfigParams['helpInfos'][$group])) {
|
if (isset(self :: $_JSconfigParams['helpInfos'][$group]) && is_array(self :: $_JSconfigParams['helpInfos'][$group])) {
|
||||||
self :: $_JSconfigParams['helpInfos'][$group] = array_merge(self :: $_JSconfigParams['helpInfos'][$group],$infos);
|
self :: $_JSconfigParams['helpInfos'][$group] = array_merge(self :: $_JSconfigParams['helpInfos'][$group],$infos);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue