From 91d2df195481c38c55915cf8828fe385e41dfb13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Carlos=20Rodr=C3=ADguez-del-Pino?= Date: Tue, 4 Oct 2022 16:22:33 +0100 Subject: [PATCH] Fixes HTML that prevents seeing actions buttons in classic theme --- forms/overrides.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/forms/overrides.php b/forms/overrides.php index 4633240f..5cc2cf54 100644 --- a/forms/overrides.php +++ b/forms/overrides.php @@ -39,12 +39,12 @@ function vpl_get_overrideactions($id, $overrideid, $editing) { global $OUTPUT, $PAGE; if ($editing == $overrideid) { vpl_include_jsfile('override.js'); - $save = '' . + $save = '' . $OUTPUT->pix_icon( 'save', get_string('save'), 'mod_vpl' ) . - ''; - $cancel = '' . + ''; + $cancel = '' . $OUTPUT->pix_icon( 'cancel', get_string('cancel'), 'mod_vpl' ) . - ''; + ''; return $save . $cancel; } else if ($editing === null) { $edit = '' .