Details
Description
The HTML block that is part of the standard distro from 1.5 onwards shows a header area in the block when there is no title to display.
I believe the header bar should be hidden completely when the config has not had a title set.
To fix the problem the following code needs to be added to the file /blocks/html/block_html.php
function hide_header() {
if ($this->config->title == ) { return true; } else { return false; }
}
Discussion http://moodle.org/mod/forum/discuss.php?d=124888#p548375