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:
8e478c9
)
MDL-45333 output: navbar is now wrapped in a <nav> tag
author
Sam Hemelryk
<sam@moodle.com>
Wed, 14 May 2014 20:39:16 +0000
(08:39 +1200)
committer
Sam Hemelryk
<sam@moodle.com>
Thu, 29 May 2014 20:41:29 +0000
(08:41 +1200)
lib/outputrenderers.php
patch
|
blob
|
blame
|
history
diff --git
a/lib/outputrenderers.php
b/lib/outputrenderers.php
index
b31a2ac
..
2a1f56e
100644
(file)
--- a/
lib/outputrenderers.php
+++ b/
lib/outputrenderers.php
@@
-2885,7
+2885,7
@@
EOD;
//accessibility: heading for navbar list (MDL-20446)
$navbarcontent = html_writer::tag('span', get_string('pagepath'), array('class'=>'accesshide'));
- $navbarcontent .= html_writer::tag('
ul', join('', $htmlblocks), array('role'=>'navigation'
));
+ $navbarcontent .= html_writer::tag('
nav', html_writer::tag('ul', join('', $htmlblocks)
));
// XHTML
return $navbarcontent;
}