MDL-35977 comments: Missing label in blog and assignment comment area
authorMihail Geshoski <mihail@moodle.com>
Mon, 16 Jul 2018 08:00:58 +0000 (16:00 +0800)
committerMihail Geshoski <mihail@moodle.com>
Mon, 23 Jul 2018 00:55:14 +0000 (08:55 +0800)
comment/lib.php

index 9034c84..07f7a5b 100644 (file)
@@ -493,7 +493,8 @@ class comment {
                 $textareaattrs = array(
                     'name' => 'content',
                     'rows' => 2,
-                    'id' => 'dlg-content-'.$this->cid
+                    'id' => 'dlg-content-'.$this->cid,
+                    'aria-label' => get_string('addcomment')
                 );
                 if (!$this->fullwidth) {
                     $textareaattrs['cols'] = '20';