mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix incorrect testing of CSS file index in FrontEndFileHandler
This commit is contained in:
parent
5bc79fc400
commit
99728527f9
2 changed files with 1 additions and 2 deletions
|
|
@ -99,7 +99,7 @@ class FrontEndFileHandler extends Handler
|
|||
$isCommon = preg_match(HTMLDisplayHandler::$reservedCSS, $args[0]) || preg_match(HTMLDisplayHandler::$reservedJS, $args[0]);
|
||||
|
||||
// Prevent overwriting common scripts.
|
||||
if(isset($args[3]) && intval($args[3]) > -1500000000)
|
||||
if(!isset($args[3]) || intval($args[3]) > -1500000000)
|
||||
{
|
||||
if($isCommon)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue