diff options
author | Vincent Peugnet <33429034+vincent-peugnet@users.noreply.github.com> | 2020-06-14 00:29:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-14 00:29:28 +0200 |
commit | d406d081199bb9c50a0285207c2c54dd170896cd (patch) | |
tree | 38862d23235698f2efe260934ad4e483ee796ea3 | |
parent | 93e64fd8516a10befbe9a805808b37870a8eeda8 (diff) | |
parent | 5b595cfdd6856e08be152be0080bd835b9d73f13 (diff) | |
download | wcms-d406d081199bb9c50a0285207c2c54dd170896cd.tar.gz wcms-d406d081199bb9c50a0285207c2c54dd170896cd.zip |
Merge pull request #120 from vincent-peugnet/fix-css-strtolower
fix(render): css was strtolower-ed
-rw-r--r-- | app/class/Page.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |