From 5b595cfdd6856e08be152be0080bd835b9d73f13 Mon Sep 17 00:00:00 2001 From: n-peugnet Date: Sun, 31 May 2020 17:44:10 +0200 Subject: fix(render): css was strtolower-ed html classes or ids can contain uppercase characters --- app/class/Page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/class/Page.php b/app/class/Page.php index e5b84ac..9fccbb7 100644 --- a/app/class/Page.php +++ b/app/class/Page.php @@ -487,7 +487,7 @@ class Page extends Dbitem public function setcss($css) { if (strlen($css) < self::LENTEXT and is_string($css)) { - $this->css = trim(strtolower($css)); + $this->css = trim($css); } } -- cgit v1.2.3