Index: blocks/html/block_html.php =================================================================== --- blocks/html/block_html.php (revision 17249) +++ blocks/html/block_html.php (working copy) @@ -114,4 +114,16 @@ return true; } + + /** + * The block should only be dockable when the title of the block is not empty + * and when parent allows docking. + * + * @return bool + */ + public function instance_can_be_docked() { + return (!empty($this->config->title) && parent::instance_can_be_docked()); + } }