mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
LSformElement_mailQuota : little fix to permit import
This commit is contained in:
parent
70b767655e
commit
8dcccee200
1 changed files with 5 additions and 0 deletions
|
@ -155,6 +155,11 @@ class LSformElement_mailQuota extends LSformElement {
|
|||
}
|
||||
return true;
|
||||
}
|
||||
// Accept raw value to make import easier
|
||||
elseif (isset($_POST[$this -> name])) {
|
||||
$return[$this -> name]=$_POST[$this -> name];
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
$return[$this -> name] = array();
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue