mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 09:59:06 +01:00
- LSattribute : Correction de la méthode refreshForm() pour ne pas executer des traitements
inutiles (attribut dans le formulaire mais pas accèssible pour l'utilisateur).
This commit is contained in:
parent
44673c7dc1
commit
4942756f28
1 changed files with 1 additions and 1 deletions
|
@ -321,7 +321,7 @@ class LSattribute {
|
|||
* @retval boolean true si la valeur a été rafraichie ou que ce n'est pas nécessaire, false sinon
|
||||
*/
|
||||
function refreshForm(&$form,$idForm) {
|
||||
if(isset($this -> config['form'][$idForm])) {
|
||||
if(isset($this -> config['form'][$idForm])&&($this -> myRights()!='n')) {
|
||||
$form_element = $form -> getElement($this -> name);
|
||||
if ($form_element) {
|
||||
$values = $this -> html -> refreshForm($this -> getFormVal());
|
||||
|
|
Loading…
Reference in a new issue