diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-01-16 10:45:59 +0000 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-01-16 10:45:59 +0000 |
commit | 004ffac63fcc26ea1c3ff70e64a8ab626a09ec25 (patch) | |
tree | e880ec0d889bbe24ddf41674b0d6df9069d47cfd /templates | |
parent | ce3aa51e2d6452ad324b8a95541b1e33c88ea950 (diff) |
Add parameter *DROP-UNFILTERED* to control whether unauthenticated comments are to be dropped immediately.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/article.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/article.html b/templates/article.html index 2df9654..aed5406 100644 --- a/templates/article.html +++ b/templates/article.html @@ -67,7 +67,8 @@ </div> <div class="comment-form-input"> <input id="comment-form-input-{field-id|html-attr-value}" - name="{field-id|html-attr-value}" type="text" /> + name="{field-id|html-attr-value}" type="text" + {.section require-js}disabled="disabled"{.end} /> </div> </div> {.end} @@ -77,14 +78,14 @@ </div> <div class="comment-form-input"> <textarea id="comment-body" cols="60" rows="15" - name="body"></textarea> + name="body" {.section require-js}disabled="disabled"{.end}></textarea> </div> </div> </div> <div> <input type="submit" value="{submit-button-label|html-attr-value}" - class="comment-submit-button" /> + class="comment-submit-button" {.section require-js}disabled="disabled"{.end} /> </div> </form> {.end} |