Projet

Général

Profil

0002-misc-don-t-check-displayed-fields-twice-in-live-eval.patch

Frédéric Péters, 12 août 2019 16:20

Télécharger (970 octets)

Voir les différences:

Subject: [PATCH 2/2] misc: don't check displayed fields twice in live
 evaluations (#35363)

 wcs/forms/common.py | 1 +
 1 file changed, 1 insertion(+)
wcs/forms/common.py
673 673
        get_publisher().substitutions.unfeed(lambda x: x is self.filled)
674 674
        get_publisher().substitutions.feed(self.filled)
675 675
        # reevaluate workflow form according to possible new content
676
        displayed_fields = []
676 677
        form = self.filled.get_workflow_form(user, displayed_fields=displayed_fields)
677 678
        return self.live_process_fields(form, self.filled, displayed_fields)
678 679

  
679
-