|
|
|
File Attachments:
|
None
|
|
Image Attachments:
|
|
|
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>';
|
|
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>';
|
Show » |
|
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.