mirror of
https://github.com/moodle/moodle.git
synced 2025-08-03 16:13:28 +02:00
MDL-20636 fix question flag icons on the review page.
This commit is contained in:
parent
0500a3a92d
commit
61e2c3fb3f
1 changed files with 2 additions and 2 deletions
|
@ -246,9 +246,9 @@ class core_question_renderer extends plugin_renderer_base {
|
|||
$id = 'id="' . $id . '" ';
|
||||
}
|
||||
if ($flagged) {
|
||||
$img = 'flagged.png';
|
||||
$img = 'flagged';
|
||||
} else {
|
||||
$img = 'unflagged.png';
|
||||
$img = 'unflagged';
|
||||
}
|
||||
return '<img ' . $id . 'src="' . $this->pix_url('/i/' . $img) .
|
||||
'" alt="' . get_string('flagthisquestion', 'question') . '" />';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue