Skip to content
Snippets Groups Projects
Commit e671a9af authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #1552 il manquait le deuxieme parametre dans la fonction add_error()

parent 01c6b785
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ class functions ...@@ -252,7 +252,7 @@ class functions
else else
{ {
$this->add_error($msg_error, _WRONG_FORMAT); $this->add_error($msg_error, _WRONG_FORMAT);
$this->add_error(_ONLY_ALPHABETIC); $this->add_error(_ONLY_ALPHABETIC, '');
return ""; return "";
} }
...@@ -264,7 +264,7 @@ class functions ...@@ -264,7 +264,7 @@ class functions
else else
{ {
$this->add_error($msg_error,_WRONG_FORMAT); $this->add_error($msg_error,_WRONG_FORMAT);
$this->add_error(_ONLY_ALPHANUM); $this->add_error(_ONLY_ALPHANUM, '');
return ""; return "";
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment