Fix CSS sort order different from XE

This commit is contained in:
Kijin Sung 2020-08-19 15:39:37 +09:00
parent da56b5af07
commit 313e527512

View file

@ -688,7 +688,7 @@ class FrontEndFileHandler extends Handler
$tmp = array_first(explode('/', strtr($dirname, '\\.', '//')));
$cssSortList = array('common' => -100000, 'layouts' => -90000, 'modules' => -80000, 'widgets' => -70000, 'addons' => -60000);
$file->index = $cssSortList[$tmp[0]];
$file->index = $cssSortList[$tmp];
}
/**