From e7268eff4ba510eb88debd118736b16d757325cf Mon Sep 17 00:00:00 2001 From: Mathew May Date: Mon, 22 Feb 2021 11:43:05 +0800 Subject: [PATCH] MDL-70314 lib: Change XLSX wrapper to no change the default styles This is required due to changes in the base library see #1712 Summary is that if a column already has styling it can't be overpowered. --- lib/excellib.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/excellib.class.php b/lib/excellib.class.php index 43ce6d9855a..2bd4a0f8eed 100644 --- a/lib/excellib.class.php +++ b/lib/excellib.class.php @@ -489,7 +489,7 @@ class MoodleExcelWorksheet { */ class MoodleExcelFormat { /** @var array */ - protected $format = array('font'=>array('size'=>10, 'name'=>'Arial')); + protected $format = array(); /** * Constructs one Moodle Format. -- 2.11.4.GIT