# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
# It uses platform neutral UTF-8 encoding.
# Above lines and this line are ignored by the patching process.
Index: moodle/lang/en/moodle.php
--- moodle/lang/en/moodle.php Base (1.515)
+++ moodle/lang/en/moodle.php Locally Modified (Based On 1.515)
@@ -1877,3 +1877,4 @@
 $string['yourteacher'] = 'your {$a}';
 $string['yourwordforx'] = 'Your word for \'{$a}\'';
 $string['zippingbackup'] = 'Zipping backup';
+$string['pagepath'] = 'Page path:';
Index: moodle/lib/outputrenderers.php
--- moodle/lib/outputrenderers.php Base (1.195)
+++ moodle/lib/outputrenderers.php Locally Modified (Based On 1.195)
@@ -2092,8 +2092,11 @@
             $htmlblocks[] = $content;
         }
 
+        //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));
         // XHTML
-        return html_writer::tag('ul', join('', $htmlblocks));
+        return $navbarcontent;
     }
 
     protected function render_navigation_node(navigation_node $item) {
