fixed typo

This commit is contained in:
Ulf Gebhardt 2016-01-20 03:08:39 +01:00
parent fb2970fec4
commit 7ae7dc87f5

View File

@ -3,7 +3,7 @@ namespace SYSTEM\CACHE;
class cache_scss {
const CACHE_SCSS = 1;
public static function put($file,$data){
return \SYSTEM\CACHE\cache::put(self::CACHE_SCSS, self::ident($file), 'css', $data);}
return \SYSTEM\CACHE\cache::put(self::CACHE_SCSS, self::ident($file), 'CSS', $data);}
public static function get($file,$header = false){
return \SYSTEM\CACHE\cache::get(self::CACHE_SCSS, self::ident($file),$header);}
public static function ident($file){