MDL-28292 - Blocks - Patch supplied by Chris Follin to fix blocks with empty titles that disappear when docked

This commit is contained in:
Jason Fowler
2011-11-03 16:31:43 +08:00
parent f08f22c267
commit 930bbe97c6
+10
View File
@@ -121,4 +121,14 @@ class block_html extends block_base {
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());
}
}