mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
MDL-20787 final switch to new $OUTPUT->pix_url() - yay!
This commit is contained in:
parent
cb1e046d6e
commit
b5d0cafc6f
157 changed files with 576 additions and 576 deletions
|
@ -89,7 +89,7 @@ if (count($queued) > 0) {
|
|||
|
||||
$cancel = new moodle_action_icon();
|
||||
$cancel->link->url = new moodle_url($base . '&cancel=1');
|
||||
$cancel->image->src = $OUTPUT->old_icon_url('t/stop');
|
||||
$cancel->image->src = $OUTPUT->pix_url('t/stop');
|
||||
$cancel->linktext = get_string('cancel');
|
||||
|
||||
$iconstr = $OUTPUT->action_icon($cancel);
|
||||
|
@ -97,7 +97,7 @@ if (count($queued) > 0) {
|
|||
if (!$e->get('queued') && $e->get('expirytime') > $now) {
|
||||
$continue = new moodle_action_icon();
|
||||
$continue->link->url = new moodle_url($base);
|
||||
$continue->image->src = $OUTPUT->old_icon_url('t/go');
|
||||
$continue->image->src = $OUTPUT->pix_url('t/go');
|
||||
$continue->linktext = get_string('continue');
|
||||
$iconstr .= ' ' . $OUTPUT->action_icon($continue);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue