From 9e8b4a04480f882bc09316d1de6244e260199e92 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 18 Sep 2015 01:08:22 +0200 Subject: [PATCH] less file header support --- system/HEADER.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/HEADER.php b/system/HEADER.php index 0108973..af50df8 100644 --- a/system/HEADER.php +++ b/system/HEADER.php @@ -33,6 +33,9 @@ class HEADER { public static function CSS(){ if(self::checkHeader()){ header('content-type:text/css;');}} + public static function LESS(){ + if(self::checkHeader()){ + header('content-type:text/css;');}} public static function FILE($filename){ header("Content-type: application/octet-stream");