Details
Description
The patch for MDL-15501 was erroneous.
You wrote (in blocklib.php, blocks_print_adminblock(), lines 952+)
+ $strblocks = '<div class="title"><h2>';
+ $strblocks .= get_string('blocks');
+ $strblocks .= '</h2>';
whereas it should be
+ $strblocks = '<div class="title"><h2>';
+ $strblocks .= get_string('blocks');
+ $strblocks .= '</h2></div>';
This is also affecting moodle version 1.8.6 and 1.8.7.
Annoyingly, it breaks the editing mode for courses with "Weeky format - CSS/no tables"; then the whole middle column is empty, and the course content is added to the right content - below the visible screen if you don't scroll, so one can imagine it's lost.