aboutsummaryrefslogtreecommitdiff
path: root/app/class
diff options
context:
space:
mode:
authorVincent Peugnet <33429034+vincent-peugnet@users.noreply.github.com>2020-06-14 00:29:28 +0200
committerGitHub <noreply@github.com>2020-06-14 00:29:28 +0200
commitd406d081199bb9c50a0285207c2c54dd170896cd (patch)
tree38862d23235698f2efe260934ad4e483ee796ea3 /app/class
parent93e64fd8516a10befbe9a805808b37870a8eeda8 (diff)
parent5b595cfdd6856e08be152be0080bd835b9d73f13 (diff)
downloadwcms-d406d081199bb9c50a0285207c2c54dd170896cd.tar.gz
wcms-d406d081199bb9c50a0285207c2c54dd170896cd.zip
Merge pull request #120 from vincent-peugnet/fix-css-strtolower
fix(render): css was strtolower-ed
Diffstat (limited to 'app/class')
-rw-r--r--app/class/Page.php2
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);
}
}