MDL-34444 - actually display the title, just don't link it..
authorDan Poltawski <dan@moodle.com>
Wed, 22 Aug 2012 09:10:38 +0000 (17:10 +0800)
committerDan Poltawski <dan@moodle.com>
Wed, 22 Aug 2012 09:10:38 +0000 (17:10 +0800)
Don't worry, i'm going on holiday, so i'll be away from this git repo
for a while to prevent any more mess.

course/format/renderer.php

index c51506c..f53c33d 100644 (file)
@@ -291,11 +291,12 @@ abstract class format_section_renderer_base extends plugin_renderer_base {
         $o .= html_writer::tag('div', '', array('class' => 'right side'));
         $o .= html_writer::start_tag('div', array('class' => 'content'));
 
+        $title = get_section_name($course, $section);
         if ($section->uservisible) {
-            $title = html_writer::tag('a', get_section_name($course, $section),
+            $title = html_writer::tag('a', $title,
                     array('href' => course_get_url($course, $section->section), 'class' => $linkclasses));
-            $o .= $this->output->heading($title, 3, 'section-title');
         }
+        $o .= $this->output->heading($title, 3, 'section-title');
 
         $o.= html_writer::start_tag('div', array('class' => 'summarytext'));
         $o.= $this->format_summary_text($section);