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
+ *
+ * @return bool
+ */
+ public function instance_can_be_docked() {
+ if(!empty($this->config->title)){
+ return true;
+ }
+ return false;
+ }
}