mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 00:09:06 +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'])) {
|
||||
$txt = '';
|
||||
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();
|
||||
return $txt;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue