From 690b569fcdd2eec4ad002fc541bce2775e6fad52 Mon Sep 17 00:00:00 2001 From: Sara Arjona Date: Tue, 3 Oct 2023 11:09:31 +0200 Subject: [PATCH] [docs] Removed $CFG->svgicons setting --- docs/devupdate.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/devupdate.md b/docs/devupdate.md index 2f77a2f1d1..00742597aa 100644 --- a/docs/devupdate.md +++ b/docs/devupdate.md @@ -538,7 +538,8 @@ Files utilizing any of these removed icons will now be represented by the "unkno ### SVG icons -A new PHPUnit test has been introduced to verify the presence of SVG files for all system icons in Moodle LMS. Any missing SVG files have been rectified within Moodle LMS. +- The `$CFG->svgicons` parameter has been deprecated and removed. It was initially introduced in Moodle 2.4 as a response to incomplete SVG support in some web browsers, as documented in [MDL-22955](https://tracker.moodle.org/browse/MDL-22955). However, the web landscape has evolved considerably since that time, and all modern browsers now fully support SVG files, as confirmed by this compatibility chart: https://caniuse.com/svg. +- A new PHPUnit test has been introduced to verify the presence of SVG files for all system icons in Moodle LMS. Any missing SVG files have been rectified within Moodle LMS. :::tip