From: gustav_delius Date: Sat, 21 Aug 2004 09:01:01 +0000 (+0000) Subject: fixed the problem that people trying to move blocks accidentally deleted them. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=7a1efb695dd721b050f52263daaa6d5e7dbd3d4d;p=moodle.git fixed the problem that people trying to move blocks accidentally deleted them. --- 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 .= '' . ''; }