# HG changeset patch # User Thierry Florac # Date 1505997037 -7200 # Node ID 7fd0703023777737f8a222797471c5d0d4b292ea # Parent fb7c5f27e8a3cd88c877ae67291ce73abbc73017 Updated table constructor call diff -r fb7c5f27e8a3 -r 7fd070302377 src/pyams_content/component/paragraph/zmi/html.py --- a/src/pyams_content/component/paragraph/zmi/html.py Thu Sep 21 12:44:37 2017 +0200 +++ b/src/pyams_content/component/paragraph/zmi/html.py Thu Sep 21 14:30:37 2017 +0200 @@ -143,7 +143,7 @@ def get_ajax_output(self, changes): output = super(HTMLParagraphPropertiesAJAXEditForm, self).get_ajax_output(changes) if 'body' in changes.get(IHTMLParagraph, ()): - associations_table = AssociationsTable(self.context, self.request, None) + associations_table = AssociationsTable(self.context, self.request) associations_table.update() output.setdefault('events', []).append({ 'event': 'PyAMS_content.changed_item', @@ -177,7 +177,7 @@ def get_ajax_output(self, changes): output = super(HTMLParagraphInnerAJAXEditForm, self).get_ajax_output(changes) if 'body' in changes.get(IHTMLParagraph, ()): - associations_table = AssociationsTable(self.context, self.request, None) + associations_table = AssociationsTable(self.context, self.request) associations_table.update() output.setdefault('events', []).append({ 'event': 'PyAMS_content.changed_item',