mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-16 15:33:02 +01:00
LSerror: fix PHP error
This commit is contained in:
parent
14f28a1ec0
commit
ba85e5c2fc
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ class LSerror {
|
||||||
if(!empty($_SESSION['LSerror'])) {
|
if(!empty($_SESSION['LSerror'])) {
|
||||||
$txt = '';
|
$txt = '';
|
||||||
foreach ($_SESSION['LSerror'] as $error)
|
foreach ($_SESSION['LSerror'] as $error)
|
||||||
$txt .= call_user_func_array(array(self, 'formatError'), $error)."<br />\n";
|
$txt .= call_user_func_array(array('LSerror', 'formatError'), $error)."<br />\n";
|
||||||
self :: resetError();
|
self :: resetError();
|
||||||
return $txt;
|
return $txt;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue