From 7a1efb695dd721b050f52263daaa6d5e7dbd3d4d Mon Sep 17 00:00:00 2001 From: gustav_delius Date: Sat, 21 Aug 2004 09:01:01 +0000 Subject: [PATCH] fixed the problem that people trying to move blocks accidentally deleted them. --- blocks/moodleblock.class.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/blocks/moodleblock.class.php b/blocks/moodleblock.class.php index 2a915cefd9..5063445aae 100644 --- a/blocks/moodleblock.class.php +++ b/blocks/moodleblock.class.php @@ -155,26 +155,26 @@ class MoodleBlock { $title = $this->str->show; } - $movebuttons .= '' . + $movebuttons .= '' . ''; - $movebuttons .= '' . - ''; + $movebuttons .= '' . + ' '; if ($options & BLOCK_MOVE_LEFT) { - $movebuttons .= '' . + $movebuttons .= '' . ''; } if ($options & BLOCK_MOVE_UP) { - $movebuttons .= '' . + $movebuttons .= '' . ''; } if ($options & BLOCK_MOVE_DOWN) { - $movebuttons .= '' . + $movebuttons .= '' . ''; } if ($options & BLOCK_MOVE_RIGHT) { - $movebuttons .= '' . + $movebuttons .= '' . ''; } -- 2.39.5