mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-54934 workshop: ensure "Current phase" is always separated
Apparently some readers can join 2 adjacent spans completely, simply adding a whitespace between them prevents that, ensuring separation.,
This commit is contained in:
parent
c30bfed180
commit
080c1e798b
@ -290,7 +290,7 @@ class mod_workshop_renderer extends plugin_renderer_base {
|
||||
foreach ($plan->phases as $phasecode => $phase) {
|
||||
$title = html_writer::tag('span', $phase->title);
|
||||
if ($phase->active) {
|
||||
$title .= html_writer::tag('span', get_string('userplancurrentphase', 'workshop'),
|
||||
$title .= ' ' . html_writer::tag('span', get_string('userplancurrentphase', 'workshop'),
|
||||
array('class' => 'accesshide'));
|
||||
}
|
||||
$actions = '';
|
||||
|
Loading…
x
Reference in New Issue
Block a user