Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0180369
)
MDL-35977 comments: Missing label in blog and assignment comment area
author
Mihail Geshoski
<mihail@moodle.com>
Mon, 16 Jul 2018 08:00:58 +0000
(16:00 +0800)
committer
Mihail Geshoski
<mihail@moodle.com>
Mon, 23 Jul 2018 00:55:14 +0000
(08:55 +0800)
comment/lib.php
patch
|
blob
|
blame
|
history
diff --git
a/comment/lib.php
b/comment/lib.php
index
9034c84
..
07f7a5b
100644
(file)
--- a/
comment/lib.php
+++ b/
comment/lib.php
@@
-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';