MDL-46200 fix missing space in failed login message

This commit is contained in:
Dan Poltawski
2014-07-04 14:55:43 +01:00
parent fc415ee908
commit cd90445d4a
+2 -2
View File
@@ -674,8 +674,8 @@ class core_renderer extends renderer_base {
$a->attempts = $count;
$loggedinas .= get_string('failedloginattempts', '', $a);
if (file_exists("$CFG->dirroot/report/log/index.php") and has_capability('report/log:view', context_system::instance())) {
$loggedinas .= html_writer::link(new moodle_url('/report/log/index.php', array('chooselog' => 1,
'id' => 0 , 'modid' => 'site_errors')), '(' . get_string('logs') . ')');
$loggedinas .= ' ('.html_writer::link(new moodle_url('/report/log/index.php', array('chooselog' => 1,
'id' => 0 , 'modid' => 'site_errors')), get_string('logs')).')';
}
$loggedinas .= '</div>';
}