From dd54dea61015fe2a28ddffc36f99dc8eb39c3af5 Mon Sep 17 00:00:00 2001 From: moodler Date: Sat, 26 Mar 2005 02:35:29 +0000 Subject: [PATCH] Removed an inline style on list blocks --- blocks/moodleblock.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks/moodleblock.class.php b/blocks/moodleblock.class.php index 1b14bc3d913..12532a0f04f 100644 --- a/blocks/moodleblock.class.php +++ b/blocks/moodleblock.class.php @@ -554,7 +554,7 @@ class block_list extends block_base { function _print_block() { // Wrap the title in a floating DIV, in case we have edit controls to display // These controls will always be wrapped on a right-floating DIV - $title = '
'.$this->title.'
'; + $title = '
'.$this->title.'
'; if ($this->edit_controls !== NULL) { $title .= $this->edit_controls; }