diff options
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); } } |