# HG changeset patch # User neko259 # Date 2015-11-17 11:19:34 # Node ID 9d9f4258d3e3346a065274ba1e917ab83d6222f5 # Parent d8cc903fc0399c2d9f8ac102d9311b85a653dec5 Pass textarea attributes to fix w3c validation of label diff --git a/boards/forms.py b/boards/forms.py --- a/boards/forms.py +++ b/boards/forms.py @@ -82,7 +82,7 @@ class FormatPanel(forms.Textarea): formatter.preview_right + '' output += '' - output += super(FormatPanel, self).render(name, value, attrs=None) + output += super(FormatPanel, self).render(name, value, attrs=attrs) return output