Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
4de51c2
)
MDL-46200 fix missing space in failed login message
author
Dan Poltawski
<dan@moodle.com>
Fri, 4 Jul 2014 13:48:10 +0000
(14:48 +0100)
committer
Dan Poltawski
<dan@moodle.com>
Fri, 4 Jul 2014 13:49:13 +0000
(14:49 +0100)
lib/outputrenderers.php
patch
|
blob
|
blame
|
history
diff --git
a/lib/outputrenderers.php
b/lib/outputrenderers.php
index
8b9ef8f
..
9da96cb
100644
(file)
--- a/
lib/outputrenderers.php
+++ b/
lib/outputrenderers.php
@@
-705,8
+705,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())) {
$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>';
}
}
$loggedinas .= '</div>';
}