- Override the function __toString to comply with xdebug

- Correct bug in input_switch.class.php when there is several input_switch
- FicheDef the insertAttribut can have an order, usefull when installing new category + attribute
This commit is contained in:
sparkyx 2022-10-16 23:13:10 +02:00
parent b382455dd0
commit 570e3c53a1
6 changed files with 64 additions and 10 deletions

View file

@ -45,6 +45,10 @@ class HttpInput
$this->array=null;
$this->empty="";
}
public function __toString(): string
{
return "http_input".print_r($this,true);
}
public function get_array()
{
return $this->array;