diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-08-11 22:48:00 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-08-11 22:48:00 +0200 |
commit | 6076f0bd49c51cedc7a486bd2b26f4a91c85cc77 (patch) | |
tree | cede9fc17de6f185fd7a57686c420133b8b487cc /app | |
parent | 60ceeaa41717db1ce27dfb468d4ba5019f34ec4e (diff) | |
parent | abca7af8b4e9b725ae39e22cfcc4880b421fba28 (diff) | |
download | wcms-6076f0bd49c51cedc7a486bd2b26f4a91c85cc77.tar.gz wcms-6076f0bd49c51cedc7a486bd2b26f4a91c85cc77.zip |
Merge branch 'master' of https://github.com/vincent-peugnet/wcms
Diffstat (limited to 'app')
-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); } } |