From: nfreear Date: Wed, 15 Mar 2006 10:42:50 +0000 (+0000) Subject: Accessibility: added title to envelope link, replaced img width/height (OU-Bugz:... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=2bf0e5e2a9099aa7d2a0f6310288e933f472009c;p=moodle.git Accessibility: added title to envelope link, replaced img width/height (OU-Bugz: 697,736) --- diff --git a/blocks/online_users/block_online_users.php b/blocks/online_users/block_online_users.php index 4a981b7f33..b7f38bd0bd 100644 --- a/blocks/online_users/block_online_users.php +++ b/blocks/online_users/block_online_users.php @@ -112,8 +112,8 @@ class block_online_users extends block_base { $this->content->text .= print_user_picture($user->id, $this->instance->pageid, $user->picture, 16, true).' '; $this->content->text .= ''.$user->fullname.''; if (!empty($USER->id) and ($USER->id != $user->id) and !empty($CFG->messaging) and !isguest()) { // Only when logged in - $this->content->text .= ' ' - .''. get_string('messageselectadd') .''; + $this->content->text .= "\n".' ' + .''. get_string('messageselectadd') .''; } $this->content->text .= "\n"; }