From 71a818f0ffea542a347be80ec97b9592f1ca0754 Mon Sep 17 00:00:00 2001 From: eWallah Date: Wed, 4 Mar 2020 17:57:40 +0100 Subject: [PATCH] MDL-68067 tool_mobile: Mobile tool link does not have a class attribute. --- admin/tool/mobile/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/tool/mobile/lib.php b/admin/tool/mobile/lib.php index 56eede9eff2..3014c9dbc27 100644 --- a/admin/tool/mobile/lib.php +++ b/admin/tool/mobile/lib.php @@ -222,7 +222,7 @@ function tool_mobile_standard_footer_html() { global $CFG; $output = ''; if (!empty($CFG->enablemobilewebservice) && $url = tool_mobile_create_app_download_url()) { - $output .= html_writer::link($url, get_string('getmoodleonyourmobile', 'tool_mobile')); + $output .= html_writer::link($url, get_string('getmoodleonyourmobile', 'tool_mobile'), ['class' => 'mobilelink']); } return $output; }