mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-40759 fontawesome: Fix bugs from rebase
This commit is contained in:
parent
c8d0efc332
commit
07171e831e
@ -220,7 +220,7 @@ class comment {
|
||||
// load template
|
||||
$this->template = html_writer::start_tag('div', array('class' => 'comment-message'));
|
||||
|
||||
$this->template .= html_writer::start_tag('div', array('class' => 'comment-message-meta'));
|
||||
$this->template .= html_writer::start_tag('div', array('class' => 'comment-message-meta m-r-3'));
|
||||
|
||||
$this->template .= html_writer::tag('span', '___picture___', array('class' => 'picture'));
|
||||
$this->template .= html_writer::tag('span', '___name___', array('class' => 'user')) . ' - ';
|
||||
@ -264,6 +264,7 @@ class comment {
|
||||
'commentscount',
|
||||
'commentsrequirelogin',
|
||||
'deletecommentbyon',
|
||||
'deletecomment',
|
||||
),
|
||||
'moodle'
|
||||
);
|
||||
@ -577,7 +578,7 @@ class comment {
|
||||
$c->content = $u->ccontent;
|
||||
$c->format = $u->cformat;
|
||||
$c->timecreated = $u->ctimecreated;
|
||||
$c->strftimeformat = get_string('strftimerecentfull', 'langconfig');
|
||||
$c->strftimeformat = get_string('strftimerecent', 'langconfig');
|
||||
$url = new moodle_url('/user/view.php', array('id'=>$u->id, 'course'=>$this->courseid));
|
||||
$c->profileurl = $url->out(false); // URL should not be escaped just yet.
|
||||
$c->fullname = fullname($u);
|
||||
|
@ -17,7 +17,7 @@
|
||||
{{!
|
||||
Action menu trigger.
|
||||
}}
|
||||
<span class="dropdown">
|
||||
<div class="dropdown d-inline">
|
||||
<a href="#" class="dropdown-toggle" id="dropdown-{{instance}}" title="{{title}}" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{{actiontext}}}{{{menutrigger}}}{{#icon}}{{#pix}}{{key}},{{component}},{{title}}{{/pix}}{{/icon}}{{#rawicon}}{{{.}}}{{/rawicon}}{{#menutrigger}}<b class="caret"></b>{{/menutrigger}}</a>
|
||||
{{#secondary}}
|
||||
<div class="dropdown-menu dropdown-menu-right {{classes}}"{{#attributes}} {{name}}="{{value}}"{{/attributes}}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user