Viewing 1 replies (of 1 total)
  • Thread Starter macdabby

    (@macdabby)

    It looks like the problem is that it’s failing this expression:
    preg_match(‘/^[^,]+\\.(css|js)(?:,[^,]+\\.\\1)*$/’, $_GET[‘f’], $m)

    A few lines above, as a bandaid, this fixes it:
    $_GET[‘f’] = str_replace(‘,,’, ‘,’, $_GET[‘f’]);

Viewing 1 replies (of 1 total)

The topic ‘Error 400 with blank css file name’ is closed to new replies.